ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
LoggerInterface.php
Go to the documentation of this file.
1<?php
2
3namespace Psr\Log;
4
21{
29 public function emergency($message, array $context = array());
30
41 public function alert($message, array $context = array());
42
52 public function critical($message, array $context = array());
53
62 public function error($message, array $context = array());
63
74 public function warning($message, array $context = array());
75
83 public function notice($message, array $context = array());
84
94 public function info($message, array $context = array());
95
103 public function debug($message, array $context = array());
104
113 public function log($level, $message, array $context = array());
114}
Describes a logger instance.
log($level, $message, array $context=array())
Logs with an arbitrary level.
notice($message, array $context=array())
Normal but significant events.
emergency($message, array $context=array())
System is unusable.
warning($message, array $context=array())
Exceptional occurrences that are not errors.
debug($message, array $context=array())
Detailed debug information.
critical($message, array $context=array())
Critical conditions.
alert($message, array $context=array())
Action must be taken immediately.
error($message, array $context=array())
Runtime errors that do not require immediate action but should typically be logged and monitored.
info($message, array $context=array())
Interesting events.