Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / includes / debug / logger / ConsoleSpi.php
1 <?php
2
3 namespace MediaWiki\Logger;
4
5 class ConsoleSpi implements Spi {
6 public function __construct( $config = [] ) {
7 }
8
9 public function getLogger( $channel ) {
10 return new ConsoleLogger( $channel );
11 }
12 }