1 | <?php |
||
5 | trait LogTrait |
||
6 | { |
||
7 | public function emergency($message, array $context = []) |
||
11 | |||
12 | public function alert($message, array $context = []) |
||
16 | |||
17 | public function critical($message, array $context = []) |
||
21 | |||
22 | public function error($message, array $context = []) |
||
26 | |||
27 | public function warning($message, array $context = []) |
||
31 | |||
32 | public function notice($message, array $context = []) |
||
36 | |||
37 | public function info($message, array $context = []) |
||
41 | |||
42 | public function debug($message, array $context = []) |
||
46 | |||
47 | public function toLogMessage($value) |
||
55 | |||
56 | public function log($level, $message, array $context = []) |
||
64 | } |
||
65 |