Skip to content

Commit ac91299

Browse files
committed
Fixed undefined property in Firewall\ExceptionListener
1 parent d6ee1aa commit ac91299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firewall/ExceptionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ private function startAuthentication(Request $request, AuthenticationException $
196196
{
197197
if (null === $this->authenticationEntryPoint) {
198198
if (null !== $this->logger) {
199-
$this->logger->notice(sprintf('No Authentication entry point configured, returning a %s HTTP response. Configure "entry_point" on the firewall ("{firewall_name}") if you want to modify the response.', Response::HTTP_UNAUTHORIZED), ['firewall_name' => $this->providerKey]);
199+
$this->logger->notice(sprintf('No Authentication entry point configured, returning a %s HTTP response. Configure "entry_point" on the firewall "%s" if you want to modify the response.', Response::HTTP_UNAUTHORIZED, $this->firewallName));
200200
}
201201

202202
throw new HttpException(Response::HTTP_UNAUTHORIZED, $authException->getMessage(), $authException, [], $authException->getCode());

0 commit comments

Comments
 (0)