| Conditions | 4 |
| Paths | 8 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 4.128 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | 60 | public function log($level, $message, array $context = []): void |
|
| 22 | { |
||
| 23 | 60 | $stream = LogLevel::DEBUG === $level || LogLevel::INFO === $level ? \STDOUT : \STDERR; |
|
| 24 | 60 | fwrite($stream, '[' . strtoupper($level) . '] ' . $message . \PHP_EOL); |
|
| 25 | 60 | if (!empty($context)) { |
|
| 26 | fwrite($stream, var_export($context, true) . \PHP_EOL); |
||
| 27 | } |
||
| 30 |