I've been trying to learn how to properly debug ClojureScript. I'm sorry if this is a noob question, maybe it's so noob that no one else ever needs to ask it, but I can't find a direct answer anywhere. I've followed these setup tutorials:
https://github.com/shaunlebron/How-To-Debug-CLJS http://teamcoding.com/blog/2015/03/10/clojurescript/
They both setup a solid environment with a repl, but whenever I execute any code, the output and (more importantly) the errors always show up in the repl and not in the console. The only thing I can get to show up in console is print statements using (enable-console-print!)
.
I would like everything to show up in the console, no matter what, so that I can use source-maps to identify problem areas.
Thanks guys and gals!