1 | <?php |
||
5 | class NaiveStdoutLogger implements \Psr\Log\LoggerInterface |
||
6 | { |
||
7 | |||
8 | public function emergency($message, array $context = []) |
||
12 | |||
13 | public function alert($message, array $context = []) |
||
17 | |||
18 | public function critical($message, array $context = []) |
||
22 | |||
23 | public function error($message, array $context = []) |
||
27 | |||
28 | public function warning($message, array $context = []) |
||
32 | |||
33 | public function notice($message, array $context = []) |
||
37 | |||
38 | public function info($message, array $context = []) |
||
42 | |||
43 | public function debug($message, array $context = []) |
||
47 | |||
48 | public function log($level, $message, array $context = []) |
||
52 | } |