nfedoseev / yii2-logman
Log collector on the Yii framework
Package info
github.com/nfedoseev/yii2-logman
Type:yii2-extension
pkg:composer/nfedoseev/yii2-logman
1.0-rc
2016-07-06 20:30 UTC
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-01 02:54:06 UTC
README
This extension provides the logging service on the Yii framework 2.0.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nfedoseev/yii2-logman
or add
"nfedoseev/yii2-logman": "*"
to the require section of your composer.json.
Configuring application
After extension is installed you need to setup log target class:
[
'modules' => [
'logman' => [
'class' => 'nfedoseev\yii2\logman',
],
...
],
...
]