Skip to content
Snippets Groups Projects
Commit aec7af60 authored by cracauer's avatar cracauer
Browse files

When tracing, set the verbosity level of print-frame-call to 1.

If you use the *default-print-frame-call-verbosity* variable I
committed last week (to get source print along with frames in
backtraces) then you would also print the source in trace prints.
parent de993639
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.18 2003/01/23 21:05:34 toy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.19 2003/01/29 21:48:40 cracauer Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -305,7 +305,7 @@
(if (trace-info-encapsulated info)
(locally (declare (special basic-definition argument-list))
(prin1 `(,(trace-info-what info) ,@argument-list)))
(print-frame-call frame))
(print-frame-call frame :verbosity 1))
(terpri)
(trace-print frame (trace-info-print info)))
(trace-maybe-break info (trace-info-break info) "before" frame)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment