Skip to content

Commit 64afb9e

Browse files
Merge branch '4.4' into 5.0
* 4.4: (21 commits) fix merge CS [FrameworkBundle][ContainerLintCommand] Improve messages when the kernel or the container is not supported [Serializer] Skip uninitialized (PHP 7.4) properties in PropertyNormalizer and ObjectNormalizer stop using deprecated Doctrine persistence classes [Cache] Fix wrong classname in deprecation message Fix regex lookahead syntax in ApplicationTest Fixed syntax in comment [SecurityBundle][FirewallMap] Remove unused property [Messenger][AMQP] Use delivery_mode=2 by default [FrameworkBundle][DependencyInjection] Skip removed ids in the lint container command and its associated pass [SECURITY] Revert "AbstractAuthenticationListener.php error instead info. Rebase of #28462" [FrameworkBundle][Secrets] Hook configured local dotenv file [DI] Improve performance of processDefinition fix redis multi host dsn not recognized fix constructor argument type declaration Fix invalid Windows path normalization [Validator][ConstraintValidator] Safe fail on invalid timezones [DoctrineBridge] Fixed submitting invalid ids when using queries with limit [FrameworkBundle] Add info & example to auto_mapping config ...
2 parents 76c700a + 8ab510f commit 64afb9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firewall/AbstractAuthenticationListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ abstract protected function attemptAuthentication(Request $request);
175175
private function onFailure(Request $request, AuthenticationException $failed): Response
176176
{
177177
if (null !== $this->logger) {
178-
$this->logger->error('Authentication request failed.', ['exception' => $failed]);
178+
$this->logger->info('Authentication request failed.', ['exception' => $failed]);
179179
}
180180

181181
$token = $this->tokenStorage->getToken();

0 commit comments

Comments
 (0)