Skip to content

Commit

Permalink
Merge pull request #1644 from cultuurnet/bugfix/PPF-659-missing-keycl…
Browse files Browse the repository at this point in the history
…oak-logging
  • Loading branch information
Anahkiasen authored Jan 22, 2025
2 parents d02f9ee + b541be1 commit 664c1ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/Keycloak/Jobs/BlockClientHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public function handle(
[
'domain' => 'keycloak',
'id' => $event->id,
'exception' => $e,
]
);
return;
Expand Down
1 change: 1 addition & 0 deletions app/Keycloak/Jobs/UnblockClientHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public function handle(
[
'domain' => 'keycloak',
'id' => $event->id,
'exception' => $e,
]
);
return;
Expand Down
2 changes: 1 addition & 1 deletion app/Keycloak/Listeners/CreateClients.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private function createClientsInKeycloak(Integration $integration, Realms $realm

$clientCollection->add($client);
} catch (KeyCloakApiFailed $e) {
$this->logger->error($e->getMessage());
$this->logger->error($e->getMessage(), ['exception' => $e]);
}
}

Expand Down
1 change: 1 addition & 0 deletions app/UiTiDv1/Jobs/BlockConsumerHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public function handle(BlockConsumer $event): void
[
'domain' => 'uitid',
'id' => $event->id,
'exception' => $e,
]
);
return;
Expand Down
1 change: 1 addition & 0 deletions app/UiTiDv1/Jobs/UnblockConsumerHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public function handle(UnblockConsumer $event): void
[
'domain' => 'uitid',
'id' => $event->id,
'exception' => $e,
]
);
return;
Expand Down

0 comments on commit 664c1ef

Please sign in to comment.