Closed GoogleCodeExporter closed 9 years ago
Hi Egg!
You can filter errors by type in Lagger library, like:
$chromeConsole = new Lagger_Action_ChromeConsole();
$errors->addAction($chromeConsole, 'warning,fatal');
$exceptions->addAction($chromeConsole, 'warning,fatal');
In PhpConsole you can add to function handleError the next code:
if($code == E_STRICT || $code == E_NOTICE) {
return;
}
Anyway I will add filtering in PHP Console extension in this or next month.
Just star this issue https://code.google.com/p/php-console/issues/detail?id=8
to receive notification about it, or install PHP Console extension and it will
show notification popup with changes on next auto-update.
Thank for your report!
Original comment by barbushin
on 19 Aug 2011 at 6:41
I use if($code == E_STRICT || $code == E_NOTICE) {
return;
}
... you say other issue :DDD, but about deprecated notifiy .... thx for help
Original comment by eggPro...@gmail.com
on 19 Aug 2011 at 7:47
Original issue reported on code.google.com by
eggPro...@gmail.com
on 18 Aug 2011 at 8:48