[Security] Log file/line that triggered the AccessDeniedException

This commit is contained in:
Jordi Boggiano 2012-03-23 11:42:13 +01:00
parent 54ce7c75e8
commit da0bd7d0b1

View File

@ -98,7 +98,7 @@ class ExceptionListener
$token = $this->context->getToken(); $token = $this->context->getToken();
if (!$this->authenticationTrustResolver->isFullFledged($token)) { if (!$this->authenticationTrustResolver->isFullFledged($token)) {
if (null !== $this->logger) { if (null !== $this->logger) {
$this->logger->debug('Access denied (user is not fully authenticated); redirecting to authentication entry point'); $this->logger->debug('Access is denied (user is not fully authenticated) by '.$exception->getFile().' at line '.$exception->getLine().'; redirecting to authentication entry point');
} }
try { try {
@ -110,7 +110,7 @@ class ExceptionListener
} }
} else { } else {
if (null !== $this->logger) { if (null !== $this->logger) {
$this->logger->debug('Access is denied (and user is neither anonymous, nor remember-me)'); $this->logger->debug('Access is denied (and user is neither anonymous, nor remember-me) by '.$exception->getFile().' at line '.$exception->getLine());
} }
try { try {