better stack trace on eval failure (though repl still dies horribly)

This commit is contained in:
Jeremy Penner 2013-03-18 23:31:28 -04:00
parent bf41a54aec
commit 1b8cb4c148

View file

@ -39,4 +39,6 @@
(doseq [f (reset-returning-old! (:evalqueue repl) [])]
(try
(f)
(catch Exception e (println "couldn't eval:" (.getMessage e))))))
(catch Exception e
(println "couldn't eval:")
(.printStackTrace e)))))