2013-06-27 12:08:45 +00:00
**[API docs](http://ptaoussanis.github.io/timbre/)** | ** [CHANGELOG ](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md )** | [contact & contributing ](#contact--contributing ) | [other Clojure libs ](https://www.taoensso.com/clojure-libraries ) | [Twitter ](https://twitter.com/#!/ptaoussanis ) | current [semantic ](http://semver.org/ ) version:
2012-06-29 07:13:28 +00:00
```clojure
2013-08-07 05:46:04 +00:00
[com.taoensso/timbre "2.5.0"] ; See CHANGELOG for breaking changes since 1.x
2012-06-29 07:13:28 +00:00
```
2012-11-04 16:43:55 +00:00
# Timbre, a (sane) Clojure logging & profiling library
2012-07-13 10:37:40 +00:00
2013-05-15 13:09:36 +00:00
Logging with Java can be maddeningly, unnecessarily hard. Particularly if all you want is something *simple that works out-the-box* . Timbre is an attempt to make **simple logging simple** and more **complex logging reasonable** . No XML!
2012-05-28 08:13:11 +00:00
2013-06-01 12:41:07 +00:00
## What's in the box™?
2012-05-28 08:13:11 +00:00
* Small, uncomplicated **all-Clojure** library.
2012-07-03 11:48:00 +00:00
* **Super-simple map-based config**: no arcane XML or properties files!
2012-11-06 05:01:07 +00:00
* **Decent performance** (low overhead).
2013-02-04 05:32:32 +00:00
* Flexible **fn-centric appender model** with **middleware** .
2012-05-28 08:13:11 +00:00
* Sensible built-in appenders including simple **email appender** .
2013-05-15 15:37:02 +00:00
* Tunable **rate limit** and **asynchronous** logging support.
2012-07-03 11:48:00 +00:00
* Robust **namespace filtering** .
2013-06-01 12:41:07 +00:00
* **[tools.logging](https://github.com/clojure/tools.logging) support** (optional).
2012-07-03 11:48:00 +00:00
* Dead-simple, logging-level-aware **logging profiler** .
2012-05-28 08:13:11 +00:00
2013-06-01 12:41:07 +00:00
## Getting started
2012-05-28 08:13:11 +00:00
2013-06-01 12:41:07 +00:00
### Dependencies
2012-05-28 08:13:11 +00:00
2013-06-01 12:41:07 +00:00
Add the necessary dependency to your [Leiningen ](http://leiningen.org/ ) `project.clj` and `require` the library in your ns:
2012-06-29 07:13:28 +00:00
```clojure
2013-08-07 05:46:04 +00:00
[com.taoensso/timbre "2.5.0"] ; project.clj
2013-06-01 12:41:07 +00:00
(ns my-app (:require [taoensso.timbre :as timbre
2013-07-10 06:42:00 +00:00
:refer (trace debug info warn error fatal spy with-log-level)])) ; ns
2012-05-28 08:13:11 +00:00
```
2012-11-04 16:43:55 +00:00
### Logging
2012-05-28 08:13:11 +00:00
2012-05-28 10:49:54 +00:00
By default, Timbre gives you basic print output to `*out*` /`*err*` at a `debug` logging level:
```clojure
2012-05-28 10:57:23 +00:00
(info "This will print")
2012-07-03 11:48:00 +00:00
=> nil
2012-07-26 10:15:31 +00:00
%> 2012-May-28 17:26:11:444 +0700 localhost INFO [my-app] - This will print
2012-07-03 11:48:00 +00:00
(spy :info (* 5 4 3 2 1))
=> 120
2012-07-26 10:15:31 +00:00
%> 2012-May-28 17:26:14:138 +0700 localhost INFO [my-app] - (* 5 4 3 2 1) 120
2012-05-28 10:49:54 +00:00
(trace "This won't print due to insufficient logging level")
=> nil
```
There's little overhead for checking logging levels:
```clojure
(time (trace (Thread/sleep 5000)))
2012-07-03 11:48:00 +00:00
%> "Elapsed time: 0.054 msecs"
2012-05-28 10:49:54 +00:00
2013-02-11 04:55:38 +00:00
(time (when false))
2012-07-03 11:48:00 +00:00
%> "Elapsed time: 0.051 msecs"
2012-05-28 10:49:54 +00:00
```
2012-05-28 10:57:23 +00:00
First-argument exceptions generate a stack trace:
2012-05-28 10:49:54 +00:00
```clojure
(info (Exception. "Oh noes") "arg1" "arg2")
2012-07-26 10:15:31 +00:00
%> 2012-May-28 17:35:16:132 +0700 localhost INFO [my-app] - arg1 arg2
2012-05-28 10:49:54 +00:00
java.lang.Exception: Oh noes
2012-07-03 11:48:00 +00:00
NO_SOURCE_FILE:1 my-app/eval6409
2012-05-28 10:49:54 +00:00
Compiler.java:6511 clojure.lang.Compiler.eval
2012-07-03 11:48:00 +00:00
< ... >
2012-05-28 10:49:54 +00:00
```
2012-05-28 08:13:11 +00:00
### Configuration
2012-07-03 09:30:50 +00:00
Configuring Timbre couldn't be simpler. Let's check out (some of) the defaults:
```clojure
@timbre/config
=>
{:current-level :debug
:ns-whitelist []
:ns-blacklist []
2013-06-01 12:41:07 +00:00
:middleware [] ; As of Timbre 1.4.0, see source for details
2013-02-04 05:32:32 +00:00
2012-07-26 10:15:31 +00:00
:timestamp-pattern "yyyy-MMM-dd HH:mm:ss ZZ"
:timestamp-locale nil
2012-07-03 09:30:50 +00:00
:appenders
2012-07-03 11:48:00 +00:00
{:standard-out { < ... > }
2012-10-19 08:24:46 +00:00
:spit { < ... > }
2012-07-13 10:07:23 +00:00
< ... > }
2012-07-03 09:30:50 +00:00
2012-07-26 10:15:31 +00:00
:shared-appender-config {}}
2012-07-03 09:30:50 +00:00
```
2012-05-28 10:49:54 +00:00
Easily adjust the current logging level:
```clojure
2012-05-28 13:17:38 +00:00
(timbre/set-level! :warn)
2012-05-28 10:49:54 +00:00
```
2012-05-30 13:07:34 +00:00
And the default timestamp formatting for log messages:
2012-05-30 09:15:15 +00:00
```clojure
2012-07-26 10:15:31 +00:00
(timbre/set-config! [:timestamp-pattern] "yyyy-MMM-dd HH:mm:ss ZZ")
(timbre/set-config! [:timestamp-locale] (java.util.Locale/GERMAN))
2012-05-30 09:15:15 +00:00
```
2012-07-03 09:30:50 +00:00
Filter logging output by namespaces:
```clojure
(timbre/set-config! [:ns-whitelist] ["some.library.core" "my-app.*"])
```
2013-06-01 12:41:07 +00:00
### Built-in appenders
2012-07-13 10:07:23 +00:00
2013-06-01 12:41:07 +00:00
#### File appender
2012-07-13 10:07:23 +00:00
```clojure
2013-05-15 09:41:41 +00:00
(timbre/set-config! [:appenders :spit :enabled?] true)
(timbre/set-config! [:shared-appender-config :spit-filename] "/path/my-file.log")
2012-07-13 10:07:23 +00:00
```
2013-06-01 12:41:07 +00:00
#### Email ([Postal](https://github.com/drewr/postal)) appender
2012-05-28 10:49:54 +00:00
```clojure
2013-05-15 09:41:41 +00:00
;; [com.draines/postal "1.9.2"] ; Add to project.clj dependencies
;; (:require [taoensso.timbre.appenders (postal :as postal-appender)]) ; Add to ns
2012-07-13 10:07:23 +00:00
(timbre/set-config! [:appenders :postal] postal-appender/postal-appender)
2012-05-28 13:17:38 +00:00
(timbre/set-config! [:shared-appender-config :postal]
^{:host "mail.isp.net" :user "jsmith" :pass "sekrat!!1"}
{:from "me@draines.com" :to "foo@example.com"})
2012-05-28 10:49:54 +00:00
2013-05-15 15:37:02 +00:00
;; Rate limit to one email per message per minute
(timbre/set-config! [:appenders :postal :limit-per-msecs] 60000)
2012-05-28 10:49:54 +00:00
2013-05-15 09:41:41 +00:00
;; Make sure emails are sent asynchronously
2012-05-28 13:17:38 +00:00
(timbre/set-config! [:appenders :postal :async?] true)
2012-05-28 10:49:54 +00:00
```
2013-06-01 12:41:07 +00:00
#### IRC ([irclj](https://github.com/flatland/irclj)) appender
2013-04-19 13:28:02 +00:00
```clojure
2013-05-15 09:41:41 +00:00
;; [irclj "0.5.0-alpha2"] ; Add to project.clj dependencies
;; (:require [taoensso.timbre.appenders (irc :as irc-appender)]) ; Add to ns
2013-04-19 13:28:02 +00:00
2013-05-15 09:41:41 +00:00
(timbre/set-config! [:appenders :irc] irc-appender/irc-appender)
2013-04-19 13:28:02 +00:00
(timbre/set-config! [:shared-appender-config :irc]
{:host "irc.example.org"
:port 6667
:nick "logger"
:name "Logger"
:chan "#logs"})
```
2013-06-05 12:52:23 +00:00
#### Socket ([server-socket](https://github.com/technomancy/server-socket)) appender
2013-06-06 11:40:50 +00:00
Listens on the specified interface (use :all for all interfaces, defaults to localhost if unspecified) and port. Connect with either of:
```
telnet localhost 9000
netcat localhost 9000
```
2013-06-05 12:52:23 +00:00
```clojure
;; [server-socket "1.0.0"] ; Add to project.clj dependencies
;; (:require [taoensso.timbre.appenders (socket :as socket-appender)]) ; Add to ns
(timbre/set-config! [:appenders :socket] socket-appender/socket-appender)
(timbre/set-config! [:shared-appender-config :socket]
2013-06-06 11:40:50 +00:00
{:listen-addr :all
2013-06-05 12:52:23 +00:00
:port 9000})
2013-07-10 06:42:00 +00:00
```
2013-06-27 08:06:08 +00:00
2013-06-05 12:06:11 +00:00
#### MongoDB ([congomongo](https://github.com/aboekhoff/congomongo)) appender
```clojure
;; [congomongo "0.4.1"] ; Add to project.clj dependencies
;; (:require [taoensso.timbre.appenders (mongo :as mongo-appender)]) ; Add to ns
(timbre/set-config! [:appenders :mongo] mongo-appender/mongo-appender)
(timbre/set-config! [:shared-appender-config :mongo]
{:db "logs"
:collection "myapp"
:server {:host "127.0.0.1" :port 27017}})
2013-06-05 12:52:23 +00:00
```
2013-06-01 12:41:07 +00:00
### Custom appenders
2012-05-28 10:49:54 +00:00
2012-07-03 09:30:50 +00:00
Writing a custom appender is dead-easy:
2012-05-28 10:49:54 +00:00
```clojure
2012-05-28 13:17:38 +00:00
(timbre/set-config!
[:appenders :my-appender]
{:doc "Hello-world appender"
:min-level :debug
:enabled? true
:async? false
2013-05-15 15:37:02 +00:00
:limit-per-msecs nil ; No rate limit
2013-05-15 13:09:36 +00:00
:fn (fn [{:keys [ap-config level prefix throwable message] :as args}]
2012-07-03 11:48:00 +00:00
(when-not (:my-production-mode? ap-config)
2013-05-15 13:09:36 +00:00
(println prefix "Hello world!" message)))
2012-05-28 10:49:54 +00:00
```
2012-05-30 06:47:53 +00:00
And because appender fns are just regular Clojure fns, you have *unlimited power* : write to your database, send a message over the network, check some other state (e.g. environment config) before making a choice, etc.
2012-07-03 11:48:00 +00:00
See the `timbre/config` docstring for more information on appenders.
## Profiling
The usual recommendation for Clojure profiling is: use a good **JVM profiler** like [YourKit ](http://www.yourkit.com/ ), [JProfiler ](http://www.ej-technologies.com/products/jprofiler/overview.html ), or [VisualVM ](http://docs.oracle.com/javase/6/docs/technotes/guides/visualvm/index.html ).
2013-06-06 11:40:50 +00:00
And these certainly do the job. But as with many Java tools, they can be a little hairy and often heavy-handed - especially when applied to Clojure. Timbre includes an alternative.
2012-07-03 11:48:00 +00:00
Let's add it to our app's `ns` declaration:
```clojure
2013-06-01 12:41:07 +00:00
(:require [taoensso.timbre.profiling :as profiling :refer (p profile)])
2012-07-03 11:48:00 +00:00
```
Wrap forms that you'd like to profile with the `p` macro and give them a name:
```clojure
(defn my-fn
[]
(let [nums (vec (range 1000))]
2012-07-03 13:50:06 +00:00
(+ (p :fast-sleep (Thread/sleep 1) 10)
(p :slow-sleep (Thread/sleep 2) 32)
2012-07-03 11:48:00 +00:00
(p :add (reduce + nums))
(p :sub (reduce - nums))
(p :mult (reduce * nums))
(p :div (reduce / nums)))))
(my-fn)
=> 42
```
The `profile` macro can now be used to log times for any wrapped forms:
```clojure
(profile :info :Arithmetic (dotimes [n 100] (my-fn)))
=> "Done!"
2012-07-26 10:15:31 +00:00
%> 2012-Jul-03 20:46:17 +0700 localhost INFO [my-app] - Profiling my-app/Arithmetic
2012-07-04 06:47:21 +00:00
Name Calls Min Max MAD Mean Total% Total
my-app/slow-sleep 100 2ms 2ms 31μs 2ms 57 231ms
my-app/fast-sleep 100 1ms 1ms 27μs 1ms 29 118ms
my-app/add 100 44μs 2ms 46μs 100μs 2 10ms
my-app/sub 100 42μs 564μs 26μs 72μs 2 7ms
my-app/div 100 54μs 191μs 17μs 71μs 2 7ms
my-app/mult 100 31μs 165μs 11μs 44μs 1 4ms
Unaccounted 6 26ms
Total 100 405ms
2012-07-03 11:48:00 +00:00
```
2012-07-04 06:47:21 +00:00
It's important to note that Timbre profiling is fully **logging-level aware** : if the level is insufficient, you *won't pay for profiling* . Likewise, normal namespace filtering applies. (Performance characteristics for both checks are inherited from Timbre itself).
2012-07-03 11:48:00 +00:00
2012-07-03 13:50:06 +00:00
And since `p` and `profile` **always return their body's result** regardless of whether profiling actually happens or not, it becomes feasible to use profiling more often as part of your normal workflow: just *leave profiling code in production as you do for logging code* .
2012-07-03 11:48:00 +00:00
2012-07-04 06:47:21 +00:00
A simple **sampling profiler** is also available: `taoensso.timbre.profiling/sampling-profile` .
2012-05-28 08:13:11 +00:00
2013-07-09 07:48:48 +00:00
## This project supports the CDS and ![ClojureWerkz](https://raw.github.com/clojurewerkz/clojurewerkz.org/master/assets/images/logos/clojurewerkz_long_h_50.png) goals
2013-06-01 12:41:07 +00:00
2013-06-22 10:43:56 +00:00
* [CDS ](http://clojure-doc.org/ ), the **Clojure Documentation Site** , is a **contributer-friendly** community project aimed at producing top-notch, **beginner-friendly** Clojure tutorials and documentation. Awesome resource.
2013-06-01 12:41:07 +00:00
2013-06-22 10:43:56 +00:00
* [ClojureWerkz ](http://clojurewerkz.org/ ) is a growing collection of open-source, **batteries-included Clojure libraries** that emphasise modern targets, great documentation, and thorough testing. They've got a ton of great stuff, check 'em out!
2012-06-16 06:53:38 +00:00
2013-06-01 12:41:07 +00:00
## Contact & contribution
2012-11-05 17:48:42 +00:00
2013-06-01 12:41:07 +00:00
Please use the [project's GitHub issues page ](https://github.com/ptaoussanis/timbre/issues ) for project questions/comments/suggestions/whatever ** (pull requests welcome!)**. Am very open to ideas if you have any!
2012-05-28 08:13:11 +00:00
2013-06-01 12:41:07 +00:00
Otherwise reach me (Peter Taoussanis) at [taoensso.com ](https://www.taoensso.com ) or on Twitter ([@ptaoussanis](https://twitter.com/#!/ptaoussanis)). Cheers!
2012-05-28 08:13:11 +00:00
## License
2013-06-05 13:16:52 +00:00
Copyright © 2012, 2013 Peter Taoussanis. Distributed under the [Eclipse Public License ](http://www.eclipse.org/legal/epl-v10.html ), the same as Clojure.