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
@@ -150,7 +151,7 @@ private function executeAuthenticators(array $authenticators, Request $request):
150
151
// lazily (after initialization).
151
152
if (false === $authenticator->supports($request)) {
152
153
if (null !== $this->logger) {
153
-
$this->logger->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticator)]);
154
+
$this->logger->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
154
155
}
155
156
156
157
continue;
@@ -159,7 +160,7 @@ private function executeAuthenticators(array $authenticators, Request $request):
$this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator)]);
163
+
$this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticatorinstanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)]);
163
164
}
164
165
165
166
return$response;
@@ -209,7 +210,7 @@ private function executeAuthenticator(AuthenticatorInterface $authenticator, Req
0 commit comments