diff --git a/src/hottub/repl.clj b/src/hottub/repl.clj index f0b9813..c37bcc2 100644 --- a/src/hottub/repl.clj +++ b/src/hottub/repl.clj @@ -39,4 +39,6 @@ (doseq [f (reset-returning-old! (:evalqueue repl) [])] (try (f) - (catch Exception e (println "couldn't eval:" (.getMessage e)))))) \ No newline at end of file + (catch Exception e + (println "couldn't eval:") + (.printStackTrace e))))) \ No newline at end of file