ExceptionLoggingSubscriber::onException

public ExceptionLoggingSubscriber::onException(GetResponseForExceptionEvent $event)

Log all exceptions.

Parameters

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

File

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

Class

ExceptionLoggingSubscriber
Log exceptions without further handling.

Namespace

Drupal\Core\EventSubscriber

Code

public function onException(GetResponseForExceptionEvent $event) {
  $exception = $event->getException();

  $method = 'onError';

  // Treat any non-HTTP exception as if it were one, so we log it the same.
  if ($exception instanceof HttpExceptionInterface) {
    $possible_method = 'on' . $exception->getStatusCode();
    if (method_exists($this, $possible_method)) {
      $method = $possible_method;
    }
  }

  $this->$method($event);
}
doc_Drupal
2016-10-29 09:09:23
Comments
Leave a Comment

Please login to continue.