1 | <?php |
||
11 | final class TracyLogger implements LoggerInterface |
||
12 | { |
||
13 | use SmartObject; |
||
14 | |||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | public function error(string $message): void |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function notice(string $message): void |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function info(string $message): void |
||
38 | } |
||
39 |