eldpmdesign / php-console

Automatically exported from code.google.com/p/php-console
0 stars 0 forks source link

To many error ... #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hello!

I little speak english...

I use with wordpress... to many message send to cookie then partially loaded 
page :{

what can be done?

Thanks!

By Egg

Original issue reported on code.google.com by eggPro...@gmail.com on 18 Aug 2011 at 8:48

GoogleCodeExporter commented 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

GoogleCodeExporter commented 9 years ago
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