ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
LoggerInterface.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Psr\Log;
4 
20 interface LoggerInterface
21 {
30  public function emergency($message, array $context = array());
31 
43  public function alert($message, array $context = array());
44 
55  public function critical($message, array $context = array());
56 
66  public function error($message, array $context = array());
67 
79  public function warning($message, array $context = array());
80 
89  public function notice($message, array $context = array());
90 
101  public function info($message, array $context = array());
102 
111  public function debug($message, array $context = array());
112 
122  public function log($level, $message, array $context = array());
123 }
notice($message, array $context=array())
Normal but significant events.
$context
Definition: webdav.php:25
critical($message, array $context=array())
Critical conditions.
log($level, $message, array $context=array())
Logs with an arbitrary level.
debug($message, array $context=array())
Detailed debug information.
alert($message, array $context=array())
Action must be taken immediately.
catch(Exception $e) $message
info($message, array $context=array())
Interesting events.
Describes a logger instance.
emergency($message, array $context=array())
System is unusable.
warning($message, array $context=array())
Exceptional occurrences that are not errors.
error($message, array $context=array())
Runtime errors that do not require immediate action but should typically be logged and monitored...