ChromePHP is a console logging extension for Google Chrome.
If, for some reason, you don't want to use the built-in logging feature that comes with Yii, and you are developing on a Chrome browser, this extension (ChromePHP) might cheer you up.
First, install the latest available ChromePHP Extension from here on your browser. This will put a little PHP+Chrome icon on your toolbar.
Download the ChromePHP class, and place it under your protected/vendors
folder, and update your configuration file protected/config/main.php
:
'import'=>array(
'application.models.*',
'application.components.*',
'application.vendors.chromephp.ChromePhp',
),
And you are ready to go.
You can send Log, Warning and Error messages straight to your Chrome console:
ChromePhp::log('hello world');
ChromePhp::warn('this is a warning');
ChromePhp::error('this is an error');
For the full feature list (ie: Filestorage) please check out their site here: http://www.chromephp.com
Oh, and don't use it in production! ;)
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.