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