ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
NullLogger.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Psr\Log;
4 
14 {
24  public function log($level, $message, array $context = array())
25  {
26  // noop
27  }
28 }
This is a simple Logger implementation that other Loggers can inherit from.
Create styles array
The data for the language used.
log($level, $message, array $context=array())
Logs with an arbitrary level.
Definition: NullLogger.php:24
This Logger can be used to avoid conditional log calls.
Definition: NullLogger.php:13