Variable: edebug-trace
edebug-trace is a customizable variable defined in edebug.el.gz.
Value
nil
Documentation
Non-nil means display a trace of function entry and exit.
Tracing output is displayed in a buffer named *edebug-trace*, one
function entry or exit per line, indented by the recursion level.
You can customize by replacing functions edebug-print-trace-before
and edebug-print-trace-after.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defcustom edebug-trace nil
"Non-nil means display a trace of function entry and exit.
Tracing output is displayed in a buffer named `*edebug-trace*', one
function entry or exit per line, indented by the recursion level.
You can customize by replacing functions `edebug-print-trace-before'
and `edebug-print-trace-after'."
:type 'boolean)