1 | <?php |
||
7 | trait LogTrait |
||
8 | { |
||
9 | public function emergency($message, array $context = []) |
||
13 | |||
14 | public function alert($message, array $context = []) |
||
18 | |||
19 | public function critical($message, array $context = []) |
||
23 | |||
24 | public function error($message, array $context = []) |
||
28 | |||
29 | public function warning($message, array $context = []) |
||
33 | |||
34 | public function notice($message, array $context = []) |
||
38 | |||
39 | public function info($message, array $context = []) |
||
43 | |||
44 | public function debug($message, array $context = []) |
||
48 | |||
49 | public function toLogMessage($value) |
||
57 | |||
58 | public function log($level, $message, array $context = []) |
||
66 | } |
||
67 |