Note: Starting from Yii 1.1.6 this extension is merged into the core framework and should be considered obsolete.
A bit improved error handler. For now it can show trace call arguments, show if method is called statically or dynamically and generally a bit more cleaner.
Add to your main.php into components section:
'components'=>array( … 'errorHandler' => array( 'class' => 'ext.yiiext.components.improvedErrorHandler.EImprovedErrorHandler' ), ),
Total 2 comments
Too bad I can only give you one thumbs up! :p
It is worth mentioning that with this error handler your application is hidden in case of fatal error, i.e. you don't see stack trace report as glued to the bottom of your app, instead it fills whole view area.
Leave a comment
Please login to leave your comment.