View Issue Details

IDProjectCategoryView StatusLast Update
0000243XdebugUncategorizedpublic2007-02-28 20:42
Reportersugino Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionopen 
Summary0000243: show_exception_trace="0" ignored
Description

In my php.ini, I set
xdebug.show_exception_trace="0",
but xdebug writes the exception trace
on error_log.

Steps To Reproduce
  1. Set in your php.ini as
    xdebug.show_exception_trace="0"

  2. Execute this script on your web server.
    try {
    throw new Exception('test');
    }
    catch (Exception $e) {
    }

  3. Check your web server's error_log.

Additional Information

0000218 said same thing.
The problem is that get_printable_stack() calls log_stack()
in xdebug.c, because xdebug_throw_exception_hook() calls
get_printable_stack().

TagsNo tags attached.
Operating SystemFedora Core 4
PHP Version5.2.0

Activities

derick

2007-02-28 20:42

administrator   ~0000575

Fixed in CVS - thanks for your report.

Issue History

Date Modified Username Field Change
2007-02-28 11:27 sugino New Issue
2007-02-28 20:42 derick Status new => closed
2007-02-28 20:42 derick Note Added: 0000575
2016-07-31 12:36 derick Category Usage problems => Usage problems (Crashes)
2016-07-31 12:38 derick Category Usage problems (Crashes) => Usage problems (Wrong Results)
2020-03-12 16:35 derick Category Usage problems (Wrong Results) => Variable Display
2020-03-12 16:38 derick Category Variable Display => Uncategorized