Inspired by spatie/laravel-tail, (*1)
Tail your logs with yii2 console, (*2)
How to install
composer require vladyslavstartsev/yii2-log-tail
- Go to (or create) your console
LogController
and drop in
public function actions()
{
return [
'tail' => ['class' => '\VladyslavStartsev\YiiLogTail\Actions\TailAction'],
];
}
- Done! your should see your logs tailed by running
./yii log/tail
.
How to use
-
./yii log/tail
- tails your logs
parameters
lines
- number of lines to tail. use it like this ./yii log/tail
, (*3)
Questions
- Why it was written as action and not as separate controller?
The reason is because LogController
seems to be popular name for me. By using action,
you can just "inject" it wherever you want, (*4)
- Why did you use Laravel Collections ?
There are 2 reasons of it, (*5)
- They have very neat API
- yii2 collections was not stable at the moment of the development
Contributing
Contributions are welcome and will be fully credited., (*6)
We accept contributions via Pull Requests on Github., (*7)