From 9a8823c9396de2af02ad51605acf17c2cc39d828 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 10 Feb 2022 10:30:51 +0100 Subject: [PATCH] Add debug info about auth entry point --- .../Component/Security/Http/Firewall/ExceptionListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php index 7fe1d15656bbc..0703ec6ff5fd8 100644 --- a/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/ExceptionListener.php @@ -189,7 +189,7 @@ private function startAuthentication(Request $request, AuthenticationException $ $this->throwUnauthorizedException($authException); } - $this->logger?->debug('Calling Authentication entry point.'); + $this->logger?->debug('Calling Authentication entry point.', ['entry_point' => $this->authenticationEntryPoint]); if (!$this->stateless) { $this->setTargetPath($request);