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