figwheel

general discussion about figwheel, specific discussions in #figwheel-main and #lein-figwheel
2017-05-26T16:03:54.901224Z

Hey! I'm running into an println issue with Figwheel version 0.5.10. When Figwheel tries to compile something and fails (outputting the "helper application") I go to the appropriate localhost URI in the browser and helpful Figwheel info appears in the Chrome console, but none of my own println statements do. For instance I have a .cljc file like so (and I know it's getting loaded) :

(ns ...)

#?(:cljs (enable-console-print!))
#?(:cljs (js/console.error "Just print something"))
but it doesn't print. Any ideas?