From 9d306f9046cb63f6a09b8b4a6c1bce8c97a0332c Mon Sep 17 00:00:00 2001 From: Diego Aguiar Date: Thu, 12 Dec 2019 11:50:33 -0700 Subject: [PATCH] [SECURITY] Revert "AbstractAuthenticationListener.php error instead info. Rebase of #28462" This reverts commit 867eb78cfea8d45334faddbbf1ad62b52fe5ed1a. --- .../Security/Http/Firewall/AbstractAuthenticationListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php b/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php index 8b70a24344..e400f4a7cd 100644 --- a/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php @@ -184,7 +184,7 @@ abstract class AbstractAuthenticationListener extends AbstractListener implement private function onFailure(Request $request, AuthenticationException $failed): Response { if (null !== $this->logger) { - $this->logger->error('Authentication request failed.', ['exception' => $failed]); + $this->logger->info('Authentication request failed.', ['exception' => $failed]); } $token = $this->tokenStorage->getToken();