ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
AbstractLogger.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Psr\Log;
4 
12 abstract class AbstractLogger implements LoggerInterface
13 {
22  public function emergency($message, array $context = array())
23  {
25  }
26 
38  public function alert($message, array $context = array())
39  {
41  }
42 
53  public function critical($message, array $context = array())
54  {
56  }
57 
67  public function error($message, array $context = array())
68  {
70  }
71 
83  public function warning($message, array $context = array())
84  {
86  }
87 
96  public function notice($message, array $context = array())
97  {
99  }
100 
111  public function info($message, array $context = array())
112  {
114  }
115 
124  public function debug($message, array $context = array())
125  {
127  }
128 }
$context
Definition: webdav.php:25
critical($message, array $context=array())
Critical conditions.
This is a simple Logger implementation that other Loggers can inherit from.
log($level, $message, array $context=array())
Logs with an arbitrary level.
error($message, array $context=array())
Runtime errors that do not require immediate action but should typically be logged and monitored...
catch(Exception $e) $message
info($message, array $context=array())
Interesting events.
alert($message, array $context=array())
Action must be taken immediately.
Describes a logger instance.
emergency($message, array $context=array())
System is unusable.
warning($message, array $context=array())
Exceptional occurrences that are not errors.
notice($message, array $context=array())
Normal but significant events.
debug($message, array $context=array())
Detailed debug information.