MediaWiki  1.23.13
LoggerFactory.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Logger;
22 
37 
44  public static function getInstance( $channel ) {
45  return new BackcompatLogger( $channel );
46  }
47 
51  private function __construct() {
52  // no-op
53  }
54 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
MediaWiki\Logger\LoggerFactory\__construct
__construct()
Construction of utility class is not allowed.
Definition: LoggerFactory.php:51
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance.
Definition: LoggerFactory.php:44
MediaWiki\Logger\LoggerFactory
Backwards compatible PSR-3 logger instance factory.
Definition: LoggerFactory.php:36
MediaWiki\Logger
Definition: BackcompatLogger.php:21
MediaWiki\Logger\BackcompatLogger
PSR-3 logger that wraps wfDebugLog() for backwards compatibility.
Definition: BackcompatLogger.php:35