1 | <?php |
||
8 | abstract class Log extends Provider implements LoggerInterface |
||
9 | { |
||
10 | public function emergency($message, array $context = array()) |
||
14 | |||
15 | public function alert($message, array $context = array()) |
||
19 | |||
20 | public function critical($message, array $context = array()) |
||
24 | |||
25 | public function error($message, array $context = array()) |
||
29 | |||
30 | public function warning($message, array $context = array()) |
||
34 | |||
35 | public function notice($message, array $context = array()) |
||
39 | |||
40 | public function info($message, array $context = array()) |
||
44 | |||
45 | public function debug($message, array $context = array()) |
||
49 | } |
||
50 |