From 867eb78cfea8d45334faddbbf1ad62b52fe5ed1a Mon Sep 17 00:00:00 2001 From: Alexey Berezuev Date: Mon, 8 Jul 2019 12:13:32 +0300 Subject: [PATCH] [SECURITY] AbstractAuthenticationListener.php error instead info. Rebase of #28462 --- .../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 58e188cc4c..c05d3a348f 100644 --- a/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php @@ -176,7 +176,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface private function onFailure(Request $request, AuthenticationException $failed) { if (null !== $this->logger) { - $this->logger->info('Authentication request failed.', ['exception' => $failed]); + $this->logger->error('Authentication request failed.', ['exception' => $failed]); } $token = $this->tokenStorage->getToken();