'\\MediaWiki\\Logger\\LegacySpi', * ); * @endcode * * @see \MediaWiki\Logger\LoggerFactory * @since 1.25 * @author Bryan Davis * @copyright © 2014 Bryan Davis and Wikimedia Foundation. */ 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]; } }