Hi
How can I prevent figwheel from printing to console? I am trying to use it with blessed
(an ncurses-like lib for node) and it messes with the "rendering"
The only "solution" I came up with is monkey-patching console.log (set! (.-log js/console) identity)
🙈