1 | <?php |
||
18 | trait OptionalLoggerTrait |
||
19 | { |
||
20 | use LoggerAwareTrait; |
||
21 | |||
22 | /** |
||
23 | * Send a log message only if we have a logger instantiated |
||
24 | * |
||
25 | * @param string $level |
||
26 | * @param string $message |
||
27 | * @param array $context |
||
28 | */ |
||
29 | 78 | protected function log($level, $message, array $context = []) |
|
35 | } |
||
36 |