This commit is contained in:
Peter Taoussanis 2013-09-25 16:01:26 +07:00
parent a6f287fe38
commit acd6d7b5e9
3 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,6 @@
## v2.5.0 → v2.6.1
## v2.5.0 → v2.6.2
* Perf: add support for a compile-time logging level environment variable (`TIMBRE_LOG_LEVEL`). See `timbre/compile-time-level` docstring for details.
* Fix: `use-timbre`, `str-println` bugs.
## v2.4.1 → v2.5.0

View File

@ -1,7 +1,7 @@
**[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:
```clojure
[com.taoensso/timbre "2.6.1"] ; See CHANGELOG for breaking changes since 1.x
[com.taoensso/timbre "2.6.2"] ; See CHANGELOG for breaking changes since 1.x
```
# Timbre, a (sane) Clojure logging & profiling library
@ -27,7 +27,7 @@ Logging with Java can be maddeningly, unnecessarily hard. Particularly if all yo
Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:
```clojure
[com.taoensso/timbre "2.6.1"] ; project.clj
[com.taoensso/timbre "2.6.2"] ; project.clj
(ns my-app (:require [taoensso.timbre :as timbre
:refer (trace debug info warn error fatal spy with-log-level)])) ; ns
```

View File

@ -1,4 +1,4 @@
(defproject com.taoensso/timbre "2.6.1"
(defproject com.taoensso/timbre "2.6.2"
:description "Clojure logging & profiling library"
:url "https://github.com/ptaoussanis/timbre"
:license {:name "Eclipse Public License"