karataserkan/log4yii

Yii2 Log Target

Installs: 1 537

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.2.3 2022-08-16 08:51 UTC

This package is auto-updated.

Last update: 2024-04-16 12:27:58 UTC


README

log4yii

Latest Stable Version Total Downloads Monthly Downloads License

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist karataserkan/log4yii "*"

or add

"karataserkan/log4yii": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?= 'targets' => [
	[
      'class' => 'karataserkan\log4yii\HttpLogTarget',
      'levels' => ['info', 'error', 'warning'],
      'logVars' => ['_GET', '_POST', '_FILES'],
      'categories' => ['test'],
      'baseUrl' => 'http://url'
    ],
    [
      'class' => 'karataserkan\log4yii\StreamLogTarget',
      'levels' => ['info', 'error', 'warning'],
      'logVars' => ['_GET', '_POST', '_FILES'],
      'url' => 'php://stdout'
    ]
], ?>```