pahanini / yii2-consolelog
Dumps log to console
Package info
github.com/pahanini/yii2-consolelog
Type:yii2-extension
pkg:composer/pahanini/yii2-consolelog
v3.0.1
2018-10-03 08:13 UTC
README
Dumps output to console, for console application debugging
Installation
Add
"pahanini/yii2-consolelog": "*"
to the require section of your composer.json file.
Usage
return [ 'id' => 'app-console', 'bootstrap' => ['log'], 'components' => [ 'log' => [ 'targets' => [ [ 'class' => 'pahanini\log\ConsoleTarget', 'levels' => ['error', 'warning', 'trace'], ] ], ], ], 'params' => $params, ];
You also can customize color scheme using color property.