Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function log($level, Stringable|string $message, array $context = []): void |
||
24 | { |
||
25 | $this->connection->broadcast( |
||
26 | Connection::MESSAGE_TYPE_LOGGER, |
||
27 | VarDumper::create(['message' => $message, 'context' => $context])->asJson(false, 1) |
||
28 | ); |
||
29 | $this->decorated->log($level, $message, $context); |
||
30 | } |
||
32 |