Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function log($level, $message, array $context = []): void |
||
18 | { |
||
19 | $logValue = $this->logValue($level); |
||
20 | $streamName = 'stdout'; |
||
21 | if ($logValue > 3) { // greater than warning |
||
22 | $streamName = 'stderr'; |
||
23 | } |
||
24 | file_put_contents( |
||
25 | 'php://' . $streamName, |
||
26 | date('Y-m-d H:i:s') . ' ' . $level . ': ' . $message . PHP_EOL, |
||
27 | FILE_APPEND |
||
28 | ); |
||
47 |