You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -145,14 +146,14 @@ private function executeAuthenticators(array $authenticators, Request $request):
145
146
// eagerly (before token storage is initialized), whereas authenticate() is called
146
147
// lazily (after initialization).
147
148
if (false === $authenticator->supports($request)) {
148
-
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticator)]);
149
+
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator)]);
156
+
$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
156
157
157
158
return$response;
158
159
}
@@ -200,7 +201,7 @@ private function executeAuthenticator(AuthenticatorInterface $authenticator, Req
0 commit comments