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

1.0-rc 2016-07-06 20:30 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:52:57 UTC


README

This extension provides the logging service on the Yii framework 2.0.

Latest Stable Version Total Downloads Yii2 License

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',
        ],
        ...
    ],
    ...
]