public function ExceptionLoggingSubscriber::on404

public ExceptionLoggingSubscriber::on404(GetResponseForExceptionEvent $event)

Log 404 errors.

Parameters

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

File

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

Class

ExceptionLoggingSubscriber
Log exceptions without further handling.

Namespace

Drupal\Core\EventSubscriber

Code

public function on404(GetResponseForExceptionEvent $event) {
  $request = $event->getRequest();
  $this->logger->get('page not found')->warning('@uri', ['@uri' => $request->getRequestUri()]);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!EventSubscriber!ExceptionLoggingSubscriber.php/function/ExceptionLoggingSubscriber::on404/8.1.x