Manual:$wgMWLoggerMonologSpiConfig
This feature was removed completely in version 1.25.0. |
Debug: $wgMWLoggerMonologSpiConfig | |
---|---|
Configuration for MWLoggerMonologSpi logger factory. |
|
Introduced in version: | 1.25.0 (Gerrit change 119940; git #9b358016) |
Removed in version: | 1.25.0 (Gerrit change 168253; git #51b37035) |
Allowed values: | (array) |
Default value: | (see below) |
Other settings: Alphabetical | By function |
Details
editConfiguration for MWLoggerMonologSpi logger factory.
Default configuration installs a null handler that will silently discard all logging events.
Default value
editarray(
'loggers' => array(
'@default' => array(
'handlers' => array( 'null' ),
),
),
'handlers' => array(
'null' => array(
'class' => '\\Monolog\\Logger\\NullHandler',
),
),
);