tags:

views:

42

answers:

1

I would just love a way to filter out the back-traces from the compilation process and see only the messages from the running of my program.
I'm currently using La Clojure for Intellij, though I also use slime/emacs.

+3  A: 

If you're willing to drop back to the terminal to run, you can use mmcgrana's clj-backtrace to colorize and format the output of clojure's stacktraces.

A clj-like script that integrates clj-backtrace is available here.

Example:

example of clj-backtrace


Mike Douglas
That's what I've been unknowingly looking for for some time!
pmf