MediaWiki  1.33.0
TestLogger.php
Go to the documentation of this file.
1 <?php
25 use Psr\Log\LogLevel;
26 
33 class TestLogger extends \Psr\Log\AbstractLogger {
34  private $collect = false;
35  private $collectContext = false;
36  private $buffer = [];
37  private $filter = null;
38 
46  public function __construct( $collect = false, $filter = null, $collectContext = false ) {
47  $this->collect = $collect;
48  $this->collectContext = $collectContext;
49  $this->filter = $filter;
50  }
51 
57  public function setCollect( $collect ) {
58  $this->collect = $collect;
59  return $this;
60  }
61 
69  public function setCollectContext( $collectContext ) {
70  $this->collectContext = $collectContext;
71  return $this;
72  }
73 
79  public function getBuffer() {
80  return $this->buffer;
81  }
82 
86  public function clearBuffer() {
87  $this->buffer = [];
88  }
89 
90  public function log( $level, $message, array $context = [] ) {
91  $message = trim( $message );
92 
93  if ( $this->filter ) {
94  $message = call_user_func( $this->filter, $message, $level, $context );
95  if ( $message === null ) {
96  return;
97  }
98  }
99 
100  if ( $this->collect ) {
101  if ( $this->collectContext ) {
102  $this->buffer[] = [ $level, $message, $context ];
103  } else {
104  $this->buffer[] = [ $level, $message ];
105  }
106  } else {
107  switch ( $level ) {
108  case LogLevel::DEBUG:
109  case LogLevel::INFO:
110  case LogLevel::NOTICE:
111  trigger_error( "LOG[$level]: $message", E_USER_NOTICE );
112  break;
113 
114  case LogLevel::WARNING:
115  trigger_error( "LOG[$level]: $message", E_USER_WARNING );
116  break;
117 
118  case LogLevel::ERROR:
119  case LogLevel::CRITICAL:
120  case LogLevel::ALERT:
121  case LogLevel::EMERGENCY:
122  trigger_error( "LOG[$level]: $message", E_USER_ERROR );
123  break;
124  }
125  }
126  }
127 }
TestLogger\$filter
$filter
Definition: TestLogger.php:37
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2636
TestLogger\getBuffer
getBuffer()
Return the collected logs.
Definition: TestLogger.php:79
TestLogger
A logger that may be configured to either buffer logs or to print them to the output where PHPUnit wi...
Definition: TestLogger.php:33
TestLogger\clearBuffer
clearBuffer()
Clear the collected log buffer.
Definition: TestLogger.php:86
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
TestLogger\$collect
$collect
Definition: TestLogger.php:34
TestLogger\$collectContext
$collectContext
Definition: TestLogger.php:35
TestLogger\setCollect
setCollect( $collect)
Set the "collect" flag.
Definition: TestLogger.php:57
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
TestLogger\setCollectContext
setCollectContext( $collectContext)
Set the collectContext flag.
Definition: TestLogger.php:69
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
TestLogger\__construct
__construct( $collect=false, $filter=null, $collectContext=false)
Definition: TestLogger.php:46
TestLogger\log
log( $level, $message, array $context=[])
Definition: TestLogger.php:90
TestLogger\$buffer
$buffer
Definition: TestLogger.php:36