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\ErrorHandlerCode
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,
],
];