MediaWiki  1.33.0
LoggerFactory.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Logger;
22 
23 use Wikimedia\ObjectFactory;
24 
46 
51  private static $spi;
52 
59  public static function registerProvider( Spi $provider ) {
60  self::$spi = $provider;
61  }
62 
75  public static function getProvider() {
76  if ( self::$spi === null ) {
77  global $wgMWLoggerDefaultSpi;
78  $provider = ObjectFactory::getObjectFromSpec(
80  );
81  self::registerProvider( $provider );
82  }
83  return self::$spi;
84  }
85 
92  public static function getInstance( $channel ) {
93  return self::getProvider()->getLogger( $channel );
94  }
95 
99  private function __construct() {
100  // no-op
101  }
102 }
MediaWiki\Logger\LoggerFactory\registerProvider
static registerProvider(Spi $provider)
Register a service provider to create new \Psr\Log\LoggerInterface instances.
Definition: LoggerFactory.php:59
MediaWiki\Logger\LoggerFactory\__construct
__construct()
Construction of utility class is not allowed.
Definition: LoggerFactory.php:99
MediaWiki\Logger\LoggerFactory\getInstance
static getInstance( $channel)
Get a named logger instance from the currently configured logger factory.
Definition: LoggerFactory.php:92
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaWiki\Logger\LoggerFactory
PSR-3 logger instance factory.
Definition: LoggerFactory.php:45
MediaWiki\Logger
Definition: ConsoleLogger.php:3
MediaWiki\Logger\LoggerFactory\getProvider
static getProvider()
Get the registered service provider.
Definition: LoggerFactory.php:75
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Logger\LoggerFactory\$spi
static $spi
Service provider.
Definition: LoggerFactory.php:51
$wgMWLoggerDefaultSpi
$wgMWLoggerDefaultSpi
Default service provider for creating Psr\Log\LoggerInterface instances.
Definition: DefaultSettings.php:6245
MediaWiki\Logger\Spi
Service provider interface for \Psr\Log\LoggerInterface implementation libraries.
Definition: Spi.php:36