Skip to content

Commit 3c7ad10

Browse files
authored
Fix typo in Backchannel Logout logging messages
1 parent af24e8b commit 3c7ad10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Server/LogoutHandlers/BackChannelLogoutHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ public function handle(array $relyingPartyAssociations, ?HandlerStack $handlerSt
3939
'concurrency' => 5,
4040
'fulfilled' => function (Response $response, mixed $index) {
4141
// this is delivered each successful response
42-
$successMessage = "Backhannel Logout (index $index) - success, status: {$response->getStatusCode()} " .
42+
$successMessage = "Backchannel Logout (index $index) - success, status: {$response->getStatusCode()} " .
4343
"{$response->getReasonPhrase()}";
4444
$this->loggerService->notice($successMessage);
4545
},
4646
'rejected' => function (GuzzleException $reason, mixed $index) {
4747
// this is delivered each failed request
48-
$errorMessage = "Backhannel Logout (index $index) - error, reason: {$reason->getCode()} " .
48+
$errorMessage = "Backchannel Logout (index $index) - error, reason: {$reason->getCode()} " .
4949
"{$reason->getMessage()}, exception type: " . $reason::class;
5050
$this->loggerService->error($errorMessage);
5151
},

0 commit comments

Comments
 (0)