| 1 | <?php |
||
| 18 | class ConsoleTarget extends \yii\log\Target |
||
| 19 | { |
||
| 20 | public $exportInterval = 1; |
||
| 21 | |||
| 22 | public static $styles = [ |
||
| 23 | Logger::LEVEL_WARNING => [Console::FG_YELLOW], |
||
| 24 | Logger::LEVEL_ERROR => [Console::FG_RED], |
||
| 25 | ]; |
||
| 26 | |||
| 27 | public function export() |
||
| 33 | |||
| 34 | public function out($message, $level) |
||
| 42 | |||
| 43 | protected function getContextMessage() |
||
| 47 | } |
||
| 48 |