'\\MediaWiki\\Logger\\LegacySpi', * ]; * @endcode * * @see \MediaWiki\Logger\LoggerFactory * @since 1.25 * @copyright © 2014 Wikimedia Foundation and contributors */ class LegacySpi implements Spi { /** * @var array $singletons */ protected $singletons = []; /** * Get a logger instance. * * @param string $channel Logging channel * @return \Psr\Log\LoggerInterface Logger instance */ public function getLogger( $channel ) { if ( !isset( $this->singletons[$channel] ) ) { $this->singletons[$channel] = new LegacyLogger( $channel ); } return $this->singletons[$channel]; } }