egorspk/yii2-loganalyzer

Log analyzer widget for yii2

Installs: 25 614

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.2 2019-05-10 14:26 UTC

This package is auto-updated.

Last update: 2024-04-11 01:00:56 UTC


README

Fork yii-loganalyzer for yii2

Installation

composer require egorspk/yii2-loganalyzer
'log' => [
    'traceLevel' => YII_DEBUG ? 3 : 0,
    'targets' => [
        [
            'class' => 'spk\yii2loganalyzer\LogAnalyzerFileTarget',
            'levels' => ['error', 'warning'],
        ],
    ],
],

Widget Example

<?= \spk\yii2loganalyzer\LogAnalyzerWidget::widget([
    'log_file_path' => Yii::getAlias('@frontend') . '/runtime/logs/app.log',
]) ?>