Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/EventSubscriber/ExceptionLoggingSubscriber.php \Drupal\Core\EventSubscriber\ExceptionLoggingSubscriber::on403()
  2. 9 core/lib/Drupal/Core/EventSubscriber/ExceptionLoggingSubscriber.php \Drupal\Core\EventSubscriber\ExceptionLoggingSubscriber::on403()

Log 403 errors.

Parameters

\Symfony\Component\HttpKernel\Event\ExceptionEvent $event: The event to process.

File

core/lib/Drupal/Core/EventSubscriber/ExceptionLoggingSubscriber.php, line 40

Class

ExceptionLoggingSubscriber
Log exceptions without further handling.

Namespace

Drupal\Core\EventSubscriber

Code

public function on403(ExceptionEvent $event) {

  // Log the exception with the page where it happened so that admins know
  // why access was denied.
  $exception = $event
    ->getThrowable();
  $error = Error::decodeException($exception);
  unset($error['@backtrace_string']);
  $error['@uri'] = $event
    ->getRequest()
    ->getRequestUri();
  $this->logger
    ->get('access denied')
    ->warning('Path: @uri. ' . Error::DEFAULT_ERROR_MESSAGE, $error);
}