Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
49 | 2 | protected function getLogMsg($level, $message, array $context = array()) |
|
50 | { |
||
51 | 2 | $log_string = sprintf("%s\t%s\t%s", date('Y-m-d H:i:s'), $level, $message); |
|
52 | |||
53 | 2 | if (!empty($context)) { |
|
54 | 1 | $log_string .= "\t" . json_encode($context, true); |
|
55 | } |
||
56 | |||
57 | 2 | $log_string .= "\n"; |
|
58 | |||
59 | 2 | return $log_string; |
|
60 | } |
||
61 | } |
||
62 |