| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.7462 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | 1 | public function init(string $channel = 'stu', int $level = LoggerEnum::LEVEL_INFO): void |
|
| 28 | { |
||
| 29 | 1 | $this->level = $level; |
|
| 30 | |||
| 31 | 1 | if ($this->checkDoLog()) { |
|
| 32 | $this->logger = new Logger($channel); |
||
| 33 | $this->logger->pushHandler( |
||
| 34 | new StreamHandler( |
||
| 35 | $this->config->get('debug.logfile_path') |
||
| 36 | ), |
||
| 63 |