If I may add to my previous suggestion -- how about an option for the Debug Error Level to follow the prevailing error_reporting setting in PHP. Here is an example:
- In php.ini I have the error_reporting set to E_ALL | E_STRICT so that I can find code errors, warning and notices and also check coding standards.
- Because I use a third-party library (e.g. a PEAR module) that fails some E-STRICT checks, I wrap code such code in error_reporting(E_ERROR) to exclude the strict coding standards checks.
- It will be very nice if the Debugger would use the error_reporting levels relevant to the different pieces of code. That will give me the ability to use maximum level of error checking at every debugging step.
I hope my explanation makes sense
