1 | <?php |
||
7 | trait OptionalLoggerTrait |
||
8 | { |
||
9 | use LoggerAwareTrait; |
||
10 | |||
11 | /** |
||
12 | * Send a log message only if we have a logger instantiated |
||
13 | * |
||
14 | * @param string $level |
||
15 | * @param string $message |
||
16 | * @param array $context |
||
17 | */ |
||
18 | 67 | protected function log($level, $message, array $context = []) |
|
24 | } |
||
25 |