Skip to content

Commit

Permalink
Split the xdebug files into normal and memory debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiggar committed Mar 27, 2008
1 parent aad8e0f commit f2b6961
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 5 additions & 2 deletions misc/debug.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
zend_extension_debug_ts="/usr/local/lib/php/extensions/debug-zts-20060613/xdebug.so"

xdebug.trace_format = 0
xdebug.auto_trace = On
xdebug.trace_output_dir = .
xdebug.trace_output_name = trace.%c.%p

xdebug.show_mem_delta = On
# Turn Off and use xdebug_start_trace() and xdebug_stop_trace() for finer granularity.
xdebug.auto_trace = On

xdebug.collect_return=On
xdebug.collect_params=3
8 changes: 8 additions & 0 deletions misc/debug_mem.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
zend_extension_debug_ts="/usr/local/lib/php/extensions/debug-zts-20060613/xdebug.so"

xdebug.trace_format = 0
xdebug.auto_trace = On
xdebug.trace_output_dir = .
xdebug.trace_output_name = trace.%c.%p

xdebug.show_mem_delta = On

0 comments on commit f2b6961

Please sign in to comment.