What are best ways to Debug Clojure code, while using the repl?
|
There's also dotrace, which allows you to look at the inputs and outputs of selected functions.
produces the output:
In Clojure 1.4, You need the dependency:
And you need to add the ^:dynamic to the function definition
Then Bob is once again your uncle:
|
|||||||||||||||||
|
|
I have a little debugging macro that I find very useful:
You can insert it wherever you want to watch what's going on and when:
|
|||
|
My favourite method is a liberal sprinkling of
With a The accepted answer to this SO question: Idiomatic Clojure for progress reporting? is very helpful when debugging sequence operations. Then there's something which is currently incompatible with swank-clojure's REPL, but is too good not to mention: swank-clojure does an adequate job of making SLIME's built-in debugger useful when working with Clojure code -- note how the irrelevant bits of the stacktrace are greyed out so it's easy to find the actual problem in the code being debugged. One thing to keep in mind is that anonymous functions without "name tags" appear in the stacktrace with basically no useful information attached to them; when a "name tag" is added, it does appear in the stacktrace and all is well again:
|
|||||||||
|
|
You can also insert code to drop yourself into a REPL with all the local bindings:
Then to use it, insert it wherever you want the repl to start:
I stick this in my user.clj so it's available in all REPL sessions. |
|||||||
|
|
If you use emacs/slime/swank, then try this at the REPL:
It doesn't give you a full stack trace like you'd get under LISP, but it's good for poking around. This is the fine work of: http://hugoduncan.org/post/2010/swank_clojure_gets_a_break_with_the_local_environment.xhtml as was mentioned in a comment above. |
||||
|
|
|
Here's a nice macro for debugging complicated let forms: http://www.learningclojure.com/2010/09/astonishing-macro-of-narayan-singhal.html |
|||
|
|
|
Function version of def-let, which turns a let into a series of defs. Some credit goes to here
Usage: Needs to quote the content with a quotation, e.g.
|
|||
|
|
|
Hugo Duncan and collaborators continue to do amazing work with the ritz project. Ritz-nrepl is a nREPL server with debug capabilities. Watch Hugo's Debuggers in Clojure talk at Clojure/Conj 2012 to see it in action, in the video some of the slides aren't readable so you may want to view the slides from here. |
|||
|
|