Compare commits

..

1 Commits

Author SHA1 Message Date
50132d83dc feat: add authentication success/failure log outputs
Some checks failed
Cadoles/hydra-sql/pipeline/pr-develop There was a failure building this commit
Cadoles/hydra-sql/pipeline/head This commit is unstable
see CNOUS/mse#4707
2025-03-06 16:01:46 +01:00

View File

@ -116,7 +116,7 @@ class SQLLoginUserAuthenticator extends AbstractLoginFormAuthenticator
} }
$passport->setAttribute('attributes', $user->getAttributes()); $passport->setAttribute('attributes', $user->getAttributes());
$this->logger->warning("authentication succeeded", ['username' => $login, "remote_address" => $request->getClientIp()]); $this->logger->warning("authentication scceeded", ['username' => $login, "remote_address" => $request->getClientIp()]);
return $passport; return $passport;
} }