Re: [ANN] Timbre, an all-Clojure logging library

2013-03-15 Thread adam . neilson
I'd just like to thank you for writing this. It's perfect. On Monday, May 28, 2012 12:17:30 PM UTC+1, Peter Taoussanis wrote: Hi everyone, I recently lost it after spending 5+ hours trying to figure out why Log4j had suddenly started swallowing all my messages [again]. Anyway, decided

Re: [ANN] Timbre, an all-Clojure logging library

2013-03-15 Thread Jeremy Heiler
On Fri, Mar 15, 2013 at 7:34 PM, adam.neil...@healthunlocked.com wrote: I'd just like to thank you for writing this. It's perfect. I'll second that! I've been using Timbre lately and it has been really useful. -- -- You received this message because you are subscribed to the Google Groups

Re: [ANN] Timbre, an all-Clojure logging library

2013-03-15 Thread Peter Taoussanis
You're both very welcome, thanks for letting me know you've been enjoying the lib! BTW For those coming across this post only now, please note that the Clojars URL has changed: https://clojars.org/com.taoensso/timbre. Anyway, the newest version is always listed on GitHub:

[ANN] Timbre, an all-Clojure logging library

2012-05-28 Thread Peter Taoussanis
Hi everyone, I recently lost it after spending 5+ hours trying to figure out why Log4j had suddenly started swallowing all my messages [again]. Anyway, decided it'd be infinitely saner to write something simple for my own purposes. I'm posting it here in case someone else might find it useful.

Re: [ANN] Timbre, an all-Clojure logging library

2012-05-28 Thread Jonathan Fischer Friberg
Looks good! As you said, logging is just too damn complicated in java. Suggestion: change timbre/config to a function, seems way nicer to call (timbre/config :current-level :warn) rather than (swap! timbre/config assoc :current-level :warn) Jonathan On Mon, May 28, 2012 at 1:17 PM, Peter

Re: [ANN] Timbre, an all-Clojure logging library

2012-05-28 Thread Peter Taoussanis
Done! Having said that, I don't suggest anyone really edit their config line-by-line like this. What I do is create a map of everything I need during environment config and just merge it over the Timbre defaults with something like this: (defn deep-merge-with ; From clojure.contrib.map-utils

Re: [ANN] Timbre, an all-Clojure logging library

2012-05-28 Thread Dima Sabanin
Thank you!! I'm glad to know that it's not only me who thought Log4j was a terrible solution for logging in Clojure :) On Mon, May 28, 2012 at 7:17 PM, Peter Taoussanis ptaoussa...@gmail.com wrote: Hi everyone, I recently lost it after spending 5+ hours trying to figure out why Log4j had