diff --git a/examples/simple/project.clj b/examples/simple/project.clj index d17b849..c369305 100644 --- a/examples/simple/project.clj +++ b/examples/simple/project.clj @@ -3,7 +3,7 @@ :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2816"] [reagent "0.5.0-alpha3"] - [re-frame "0.2.0"] + [re-frame "0.3.0"] [figwheel "0.2.3-SNAPSHOT"]] :plugins [[lein-cljsbuild "1.0.4"] diff --git a/src/re_frame/handlers.cljs b/src/re_frame/handlers.cljs index 1077b9d..7b24aaf 100644 --- a/src/re_frame/handlers.cljs +++ b/src/re_frame/handlers.cljs @@ -71,7 +71,7 @@ (do ;; use of a core.async loop seems to completely ruin exception stacks. ;; So we're going print the exception to the console here, before it gets trashed. - (.error js/console e) + (.error js/console e.stack) (throw e)))))))