Yii2 log reader
this project is extend from zhuravljov/yii2-logreader, and Add more operation like
delete
download
and so on.
from 2.0.
history
can load file that Yii2 FileTarget rotated.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist kriss/yii2-log-reader "2.*"
or add
"kriss/yii2-log-reader": "2.*"
to the require section of your composer.json
file.
Once the extension is installed, simply modify your application configuration as follows:
return [
'bootstrap' => ['log-reader'],
'modules' => [
'log-reader' => [
'class' => 'kriss\logReader\Module',
'aliases' => [
'Frontend Errors' => '@frontend/runtime/logs/app.log',
'Backend Errors' => '@backend/runtime/logs/app.log',
'Console Errors' => '@console/runtime/logs/app.log',
],
],
],
];
You can then access Log Reader using the following URL:
http://localhost/path/to/index.php?r=log-reader
or if you have enabled pretty URLs, you may use the following URL:
http://localhost/path/to/log-reader