diff --git a/README.adoc b/README.adoc index e1013f3..bbe6549 100644 --- a/README.adoc +++ b/README.adoc @@ -17,7 +17,7 @@ [listing] ---- -[philoskim/debux-stubs "0.8.0"] +[philoskim/debux-stubs "0.8.1"] ---- diff --git a/project.clj b/project.clj index c1a94e8..3fbaaf0 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject philoskim/debux-stubs "0.8.0" +(defproject philoskim/debux-stubs "0.8.1" :description "Debux library for production" :url "https://github.com/philoskim/debux-stubs" :license {:name "Eclipse Public License - v 1.0" diff --git a/src/debux/core.clj b/src/debux/core.clj index e64113e..4d04a9b 100755 --- a/src/debux/core.clj +++ b/src/debux/core.clj @@ -18,7 +18,7 @@ (defmacro dbg-last [& args] (last args)) (defmacro with-level [debug-level & args] - `(when true ~@args)) + `(do ~@args)) ;;; turn-off versions (defmacro dbg_ [form & opts] form) diff --git a/src/debux/cs/core.cljc b/src/debux/cs/core.cljc index ade9dc9..2ec1bbd 100755 --- a/src/debux/cs/core.cljc +++ b/src/debux/cs/core.cljc @@ -23,7 +23,7 @@ (defmacro clog-last [& args] (last args)) (defmacro with-level [debug-level & args] - `(when true ~@args)) + `(do ~@args)) (defmacro break [& opts])