better stack trace on eval failure (though repl still dies horribly)
This commit is contained in:
parent
bf41a54aec
commit
1b8cb4c148
|
@ -39,4 +39,6 @@
|
||||||
(doseq [f (reset-returning-old! (:evalqueue repl) [])]
|
(doseq [f (reset-returning-old! (:evalqueue repl) [])]
|
||||||
(try
|
(try
|
||||||
(f)
|
(f)
|
||||||
(catch Exception e (println "couldn't eval:" (.getMessage e))))))
|
(catch Exception e
|
||||||
|
(println "couldn't eval:")
|
||||||
|
(.printStackTrace e)))))
|
Loading…
Reference in a new issue