diff --git a/src/Service/ZgwToVrijbrpService.php b/src/Service/ZgwToVrijbrpService.php index afe766e..026bb60 100644 --- a/src/Service/ZgwToVrijbrpService.php +++ b/src/Service/ZgwToVrijbrpService.php @@ -95,6 +95,8 @@ public function checkCasesToVrijBRPHandler(array $data, array $configuration): a // Loop through results and start throwing events that will send api requests to VrijBRP. foreach ($result['results'] as $zaak) { + $this->style->writeln('Handling case with id: '.$zaak['_id'].' & case type: '.$zaak['embedded']['zaaktype']['identificatie']); + // Let's make sure we send the data of this object with the thrown event in the exact same way we did before // without embedded for example (in other Bundles like ZdsToZGWBundle) $object = $this->entityManager->getRepository('App:ObjectEntity')->find($zaak['_id']);