Clojure:
Using a debugger

How to:

Clojure leans on the Java Virtual Machine (JVM), so a lot of debugging happens with Java tools. One such tool is CIDER, a powerhouse package for Clojure development in Emacs, which has solid debugging capabilities. Let’s dive in:

;; First, jack-in to a Clojure project within Emacs using CIDER
M-x cider-jack-in

;; Set a breakpoint
;; Navigate to the line in your Clojure code you want to inspect and
;; press "C-c M-b" or execute:
M-x cider-debug-defun-at-point

;; When the code runs, you'll hit the breakpoint. CIDER will prompt you with:
;; 1. n to go to the next logical step in execution,
;; 2. c to continue execution until the next breakpoint,
;; 3. q to quit debugging.

;; Inspect locals at breakpoint
;; While at a breakpoint, type:
locals

;; You'll see a list of local variables and their values printed in the minibuffer.

Sample output may look like:

{:x 10, :y 20, :result 200}

Deep Dive

The debugger is a tool as old as the hills in computing terms. The term “bug” was coined back in the early days of computing when an actual insect caused an error by shorting a circuit in a machine.

While CIDER is great for Emacs enthusiasts, there are alternatives for Clojure debugging. For instance, using IntelliJ with the Cursive plugin can give a more GUI-driven debugging experience. Plus, you can use the in-built Leiningen or tools.deps to control the process flow when debugging.

Under the hood, these debuggers often manipulate bytecodes, perform evaluations in dedicated nREPL sessions, and offer stack trace inspection. They’re leveraging the underlying JVM’s capabilities, tapping into the wealth of Java’s debugging frameworks.

See Also