diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-03-23 12:47:25 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-03-23 12:47:42 +0100 |
commit | 57d74022db3d8c8a19330dad1c34d5d52d325184 (patch) | |
tree | be49ea4d2a2c4a218b35db4474f15916edb67c01 /Http | |
parent | f9a59e2f4d0cb925cb09bd21b1573c38c74f8b66 (diff) | |
download | symfony-security-57d74022db3d8c8a19330dad1c34d5d52d325184.zip symfony-security-57d74022db3d8c8a19330dad1c34d5d52d325184.tar.gz symfony-security-57d74022db3d8c8a19330dad1c34d5d52d325184.tar.bz2 |
fixed CS
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall/ExceptionListener.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Http/Firewall/ExceptionListener.php b/Http/Firewall/ExceptionListener.php index 2f4dd79..05e7d14 100644 --- a/Http/Firewall/ExceptionListener.php +++ b/Http/Firewall/ExceptionListener.php @@ -98,7 +98,7 @@ class ExceptionListener $token = $this->context->getToken(); if (!$this->authenticationTrustResolver->isFullFledged($token)) { if (null !== $this->logger) { - $this->logger->debug('Access is denied (user is not fully authenticated) by '.$exception->getFile().' at line '.$exception->getLine().'; redirecting to authentication entry point'); + $this->logger->debug(sprintf('Access is denied (user is not fully authenticated) by "%s" at line %s; redirecting to authentication entry point', $exception->getFile(), $exception->getLine())); } try { @@ -110,7 +110,7 @@ class ExceptionListener } } else { if (null !== $this->logger) { - $this->logger->debug('Access is denied (and user is neither anonymous, nor remember-me) by '.$exception->getFile().' at line '.$exception->getLine()); + $this->logger->debug(sprintf('Access is denied (and user is neither anonymous, nor remember-me) by "%s" at line %s', $exception->getFile(), $exception->getLine())); } try { |