Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ErrorHandler.php

ErrorHandler::$loggers

Type: loggers

File

vendor/symfony/error-handler/ErrorHandler.php, line 70

Class

ErrorHandler
A generic ErrorHandler for the PHP engine.

Namespace

Symfony\Component\ErrorHandler

Code

private array $loggers = [
    \E_DEPRECATED => [
        null,
        LogLevel::INFO,
    ],
    \E_USER_DEPRECATED => [
        null,
        LogLevel::INFO,
    ],
    \E_NOTICE => [
        null,
        LogLevel::ERROR,
    ],
    \E_USER_NOTICE => [
        null,
        LogLevel::ERROR,
    ],
    \E_WARNING => [
        null,
        LogLevel::ERROR,
    ],
    \E_USER_WARNING => [
        null,
        LogLevel::ERROR,
    ],
    \E_COMPILE_WARNING => [
        null,
        LogLevel::ERROR,
    ],
    \E_CORE_WARNING => [
        null,
        LogLevel::ERROR,
    ],
    \E_USER_ERROR => [
        null,
        LogLevel::CRITICAL,
    ],
    \E_RECOVERABLE_ERROR => [
        null,
        LogLevel::CRITICAL,
    ],
    \E_COMPILE_ERROR => [
        null,
        LogLevel::CRITICAL,
    ],
    \E_PARSE => [
        null,
        LogLevel::CRITICAL,
    ],
    \E_ERROR => [
        null,
        LogLevel::CRITICAL,
    ],
    \E_CORE_ERROR => [
        null,
        LogLevel::CRITICAL,
    ],
];

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal