If you need to debug your application, there a number of useful Lisp facilities you should be aware of. The simplest trick is to trace some functions you care about to see what they are doing.
(trace foo) This will display the arguments to foo each time it is called, and will display the results each time it returns. (untrace foo) This will turn off any tracing on foo. |