nfedoseev / yii2-logman
Log collector on the Yii framework
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-23 20:04:32 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', ], ... ], ... ]