Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function format(LogEntryInterface $entry): string |
||
27 | { |
||
28 | $mesg = ''; |
||
29 | |||
30 | // channel name |
||
31 | $context = $entry->getContext(); |
||
32 | if (isset($context['__channel'])) { |
||
33 | $mesg .= '[' . strtoupper($context['__channel']) . '] '; |
||
34 | } |
||
35 | |||
36 | return $mesg . \strtoupper($entry->getLevel()) . ': ' . $entry . $this->getEol(); |
||
37 | } |
||
38 | |||
52 | } |