Trace keyword
:trace-output stream
Consider the following example:
CL-USER 129 > (setq str (open "trace.txt" :direction :output)) Warning: Setting unbound variable STR #<File stream "/u/neald/trace.txt">
:trace-output option for the functionfac tostr. fac function, and then close the file stream as follows: CL-USER 138 > (fac 8) 40320 CL-USER 139 > (close str) T
Inspect the filetrace.txt in order to see the trace output for the call of(fac 8).