@@ -56,7 +56,7 @@ public function handle(Event $event): void {
5656 try {
5757 $ oidcSession = $ this ->sessionMapper ->getSessionByAuthTokenAndUid ($ eventTokenId , $ eventTokenUserId );
5858 } catch (Exception |DoesNotExistException |MultipleObjectsReturnedException $ e ) {
59- $ this ->logger ->warning ('[TokenInvalidatedListener] Could not find the OIDC session related with an invalidated token ' , [
59+ $ this ->logger ->debug ('[TokenInvalidatedListener] Could not find the OIDC session related with an invalidated token ' , [
6060 'token_id ' => $ eventTokenId ,
6161 'user_id ' => $ eventTokenUserId ,
6262 'exception ' => $ e ,
@@ -65,7 +65,7 @@ public function handle(Event $event): void {
6565 }
6666 // we have nothing to do if we know the idp session is already closed
6767 if ($ oidcSession ->getIdpSessionClosed () !== 0 ) {
68- $ this ->logger ->warning ('[TokenInvalidatedListener] The session is already closed on the IdP side ' , [
68+ $ this ->logger ->debug ('[TokenInvalidatedListener] The session is already closed on the IdP side ' , [
6969 'token_id ' => $ eventTokenId ,
7070 'user_id ' => $ eventTokenUserId ,
7171 ]);
@@ -110,7 +110,7 @@ public function handle(Event $event): void {
110110 $ endSessionEndpoint .= '&client_id= ' . $ provider ->getClientId ();
111111 $ endSessionEndpoint .= '&id_token_hint= ' . $ decryptedIdToken ;
112112
113- $ this ->logger ->warning ('[TokenInvalidatedListener] requesting ' . $ endSessionEndpoint );
113+ $ this ->logger ->debug ('[TokenInvalidatedListener] requesting ' . $ endSessionEndpoint );
114114 try {
115115 $ this ->httpClientHelper ->get ($ endSessionEndpoint , [], ['timeout ' => 5 ]);
116116 } catch (ClientException |ServerException $ e ) {
0 commit comments