codeexpert / yii2-firephp
FirePHP extension for Yii Framework.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 23 446
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 3
Open Issues: 0
Requires
- php: >=5.4.0
- firephp/firephp-core: >=0.4.0
This package is not auto-updated.
Last update: 2023-02-18 07:50:17 UTC
README
FirePHP log target for YII2
If it does not work, try adding "ob_start ()" in index.php
Usage
composer.json
"require": {
"codeexpert/yii2-firephp": "0.1.*@dev"
},
config file:
$config = [
'components' => [
'log' => [
'targets' => [
'firephp' => [
'class' => 'codeexpert\log\FirePHPTarget',
]
],
],
],
];
anywhere:
\Yii::info('Hello, I am info message', 'test1');
\Yii::warning('Hello, I am warning message', 'test2');
\Yii::error('Hello, I am error message', 'test3');
\Yii::info(array('a'=>'b', 'c'=>'d'), 'array test');