From 3c211afe62ce53a1d972101b60ba7bc39a0f5867 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Tue, 29 Jan 2013 16:57:28 +0700 Subject: [PATCH] Housekeeping --- src/taoensso/timbre.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/taoensso/timbre.clj b/src/taoensso/timbre.clj index af6295f..8ae5a7a 100644 --- a/src/taoensso/timbre.clj +++ b/src/taoensso/timbre.clj @@ -31,11 +31,11 @@ (def default-err (java.io.PrintWriter. System/err)) (defmacro with-default-outs - "Executes body with Clojure's default *out* and *err* bindings." + "Evaluates body with Clojure's default *out* and *err* bindings." [& body] `(binding [*out* default-out *err* default-err] ~@body)) (defmacro with-err-as-out - "Executes body with *err* bound to *out*." + "Evaluates body with *err* bound to *out*." [& body] `(binding [*err* *out*] ~@body)) ;;;; Default configuration and appenders