Fork me on GitHub
#cursive
<
2017-01-02
>
devurandom19:01:38

I am using the "Debug REPL" and would like to see a stack trace when an exception happens. How do I do that? RIght now, when I evaluate a form in the REPL and an exception happens, it seems that the debugger is not being invoked and the REPL just returns to the regular input mode.

devurandom19:01:50

What I'm doing right now is I insert something like (when (nil? link) (println "BOOO!")) into my code and put a breakpoint onto the println. But that feels like 1990...

olslash22:01:47

@devurandom if you go to "view breakpoints" on the left part of the debugger window

devurandom22:01:12

Wow, works like a charm! Thanks @olslash !

olslash22:01:35

took me a minute to find last time 🙂