By default Xdebug will dump any exception regardless of whether it is caught or not:

try {
    throw new Exception();
}
catch (Exception $e) {
}
echo 'life goes on';

With XDebug enabled and the default settings this piece of code will actually output something like the following (nicely formatted):

( ! ) Exception: in /test.php on line 3 Call Stack
#   Time    Memory  Function    Location 1  0.0003  52596   {main}( )   ../test.php:0
life goes on

Is it possible to disable this behaviour and have it dumping only the uncaught exceptions?

Thanks in advance.

UPDATE: I'm about to conclude that this is a bug, since xdebug.show_exception_trace is disabled by default yet it doesn't behave as expected (using Xdebug v2.0.5 with PHP 5.2.10 on Ubuntu 9.10).

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Change the xdebug.show_exception_trace option (note it's not enabled by default).

xdebug.show_exception_trace

Type: integer, Default value: 0

When this setting is set to 1, Xdebug will show a stack trace whenever an exception is raised - even if this exception is actually caught.

link|improve this answer
I agree this has something to do with xdebug.show_exception_trace. I think that when set to 0 it should ignore caught exceptions, but somehow this doesn't work even when disabling it explicitly. – nuqqsa May 25 '10 at 12:06
Talk to Derick on #php.pecl @ EFNet or use the bug tracker at bugs.xdebug.org – Artefacto May 25 '10 at 12:48
This last comment makes your answer complete :) I'm definitely going to report this bug in case I can still reproduce it in 2.1.0RCx. Thanks. – nuqqsa May 28 '10 at 11:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.