3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
21 namespace MediaWiki\Logger
;
26 * PSR-3 logger instance factory.
28 * Creation of \Psr\Log\LoggerInterface instances is managed via the
29 * LoggerFactory::getInstance() static method which in turn delegates to the
30 * currently registered service provider.
32 * A service provider is any class implementing the Spi interface.
33 * There are two possible methods of registering a service provider. The
34 * LoggerFactory::registerProvider() static method can be called at any time
35 * to change the service provider. If LoggerFactory::getInstance() is called
36 * before any service provider has been registered, it will attempt to use the
37 * $wgMWLoggerDefaultSpi global to bootstrap Spi registration.
38 * $wgMWLoggerDefaultSpi is expected to be an array usable by
39 * ObjectFactory::getObjectFromSpec() to create a class.
41 * @see \MediaWiki\Logger\Spi
43 * @author Bryan Davis <bd808@wikimedia.org>
44 * @copyright © 2014 Bryan Davis and Wikimedia Foundation.
50 * @var \MediaWiki\Logger\Spi $spi
55 * Register a service provider to create new \Psr\Log\LoggerInterface
58 * @param \MediaWiki\Logger\Spi $provider Provider to register
60 public static function registerProvider( Spi
$provider ) {
61 self
::$spi = $provider;
65 * Get the registered service provider.
67 * If called before any service provider has been registered, it will
68 * attempt to use the $wgMWLoggerDefaultSpi global to bootstrap
69 * Spi registration. $wgMWLoggerDefaultSpi is expected to be an
70 * array usable by ObjectFactory::getObjectFromSpec() to create a class.
72 * @return \MediaWiki\Logger\Spi
73 * @see registerProvider()
74 * @see ObjectFactory::getObjectFromSpec()
76 public static function getProvider() {
77 if ( self
::$spi === null ) {
78 global $wgMWLoggerDefaultSpi;
79 $provider = ObjectFactory
::getObjectFromSpec(
82 self
::registerProvider( $provider );
88 * Get a named logger instance from the currently configured logger factory.
90 * @param string $channel Logger channel (name)
91 * @return \Psr\Log\LoggerInterface
93 public static function getInstance( $channel ) {
94 return self
::getProvider()->getLogger( $channel );
98 * Construction of utility class is not allowed.
100 private function __construct() {