(defn app [request]
(println "test")
{:body "Hello World"})
(defonce server (run-jetty #'app {:port 8080 :join? false}))
println
doesn't seem to work in a handler. How do I write to the REPL window?
I'm using eclipse with counterclockwise.
EDIT: This looks like nrepl issue. (future (println "foo"))
is fine, but no output with (.start (Thread. #(println "foo")))
.