DatabaseMysqlBase visibility cleanups
[mediawiki.git] / includes / debug / logger / LegacySpi.php
blob4cf8313dc19af67172431b1c21166667e4bc90c2
1 <?php
2 /**
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
18 * @file
21 namespace MediaWiki\Logger;
23 /**
24 * LoggerFactory service provider that creates LegacyLogger instances.
26 * Usage:
27 * @code
28 * $wgMWLoggerDefaultSpi = [
29 * 'class' => '\\MediaWiki\\Logger\\LegacySpi',
30 * ];
31 * @endcode
33 * @see \MediaWiki\Logger\LoggerFactory
34 * @since 1.25
35 * @author Bryan Davis <bd808@wikimedia.org>
36 * @copyright © 2014 Bryan Davis and Wikimedia Foundation.
38 class LegacySpi implements Spi {
40 /**
41 * @var array $singletons
43 protected $singletons = [];
45 /**
46 * Get a logger instance.
48 * @param string $channel Logging channel
49 * @return \Psr\Log\LoggerInterface Logger instance
51 public function getLogger( $channel ) {
52 if ( !isset( $this->singletons[$channel] ) ) {
53 $this->singletons[$channel] = new LegacyLogger( $channel );
55 return $this->singletons[$channel];