diff --git a/project.clj b/project.clj index dbe1985..0703343 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject mount "0.1.12-SNAPSHOT" +(defproject mount "0.1.15-SNAPSHOT" :description "managing Clojure and ClojureScript app state since (reset)" :url "https://github.com/tolitius/mount" :license {:name "Eclipse Public License" diff --git a/src/mount/tools/logger.cljc b/src/mount/tools/logger.cljc index f862cf8..acd9054 100644 --- a/src/mount/tools/logger.cljc +++ b/src/mount/tools/logger.cljc @@ -3,7 +3,7 @@ (:import [goog.debug Console])])) #?(:cljs - (defonce *logger* + (defonce ^:dynamic *logger* (do (.setCapturing (Console.) true) (glog/getLogger "mount"))))