Skip to content

Commit

Permalink
Comment out debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
pbiggar committed Jan 4, 2013
1 parent bcfcff4 commit 8ac978c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dieter-core/src/dieter/asset/manifest.clj
Expand Up @@ -4,7 +4,7 @@
[dieter.asset :as asset]
[dieter.path :as path]
[fs])
(:use [dieter.util :only [slurp-into string-builder inspect]])
(:use [dieter.util :only [slurp-into string-builder]])
(:import [java.io FileReader PushbackReader FileNotFoundException]))

(defn load-manifest
Expand Down
14 changes: 7 additions & 7 deletions dieter-core/src/dieter/util.clj
Expand Up @@ -18,10 +18,10 @@
(.append builder arg))
builder))

(defmacro inspect
"prints the expression '<name> is <value>', and returns the value"
[value]
`(let [value# (quote ~value)
result# ~value]
(println value# "is" (with-out-str (pprint/pprint result#)))
result#))
;; (defmacro inspect
;; "prints the expression '<name> is <value>', and returns the value"
;; [value]
;; `(let [value# (quote ~value)
;; result# ~value]
;; (println value# "is" (with-out-str (pprint/pprint result#)))
;; result#))

0 comments on commit 8ac978c

Please sign in to comment.