consultnn / yii2-stream-target
Yii2 log target for php stream wrappers, like php://stdout
Installs: 3 016
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 12
Forks: 0
Open Issues: 0
This package is not auto-updated.
Last update: 2024-11-05 04:28:30 UTC
README
StreamTarget sends log messages to the php stream wrappers.
Converts an arrays and objects to strings using Json::encode().
Example config:
[ 'targets' => [ [ 'class' => 'consultnn\streamTarget\StreamTarget', 'levels' => ['error', 'warning'], 'stream' => 'php://stderr', 'except' => ['yii\web\HttpException:404'] ], [ 'class' => 'consultnn\streamTarget\StreamTarget', 'levels' => ['info'], 'stream' => 'php://stdout', ] ] ]