Skip to content

Commit

Permalink
str-println now flushes *out* (Marek Srank).
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jul 13, 2012
1 parent 068d9bf commit 6807e2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/taoensso/timbre.clj
Expand Up @@ -19,7 +19,8 @@
"Like `println` but prints all objects to output stream as a single
atomic string. This is faster and avoids interleaving race conditions."
[& xs]
(print (str (str/join \space xs) \newline)))
(print (str (str/join \space xs) \newline))
(flush))

(defonce config
^{:doc
Expand Down

0 comments on commit 6807e2b

Please sign in to comment.