summaryrefslogtreecommitdiff
path: root/www/wiki/includes/debug/logger/ConsoleSpi.php
blob: e29b98d3b7409b80e477a09c435e8729defce645 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace MediaWiki\Logger;

class ConsoleSpi implements Spi {
	public function __construct( $config = [] ) {
	}

	public function getLogger( $channel ) {
		return new ConsoleLogger( $channel );
	}
}