8000 [SECURITY] AbstractAuthenticationListener.php error instead info. by Warxcell · Pull Request #28462 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[SECURITY] AbstractAuthenticationListener.php error instead info. #28462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update AbstractAuthenticationListener.php
Fix coding standarts
  • Loading branch information
Warxcell authored Sep 13, 2018
commit 86cf04f3c13be7ea7d66dfafba4dcfaa3c9906b3
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ private function onFailure(Request $request, AuthenticationException $failed)
{
if (null !== $this->logger) {
if ($failed instanceof AuthenticationServiceException) {
$this->logger->error('Authentication request failed.', array('exception' => $failed));
$this->logger->error('Authentication request failed.', array('exception' => $failed));
} else {
$this->logger->info('Authentication request failed.', array('exception' => $failed));
$this->logger->info('Authentication request failed.', array('exception' => $failed));
}
}

Expand Down
0