mirror of https://github.com/status-im/timbre.git
v3.0.0-RC4
This commit is contained in:
parent
06da070a24
commit
fb166c8fbe
|
@ -1,4 +1,4 @@
|
|||
## v3.0.0-RC2 / 2013-12-04
|
||||
## v3.0.0-RC4 / 2013-Jan-02
|
||||
|
||||
Major update, non-breaking though users with custom appenders are encouraged to view the _Changes_ section below. This version polishes up the codebase and general design. Tightened up a few aspects of how appenders and appender middleware work. Added a serializing Carmine appender (I use something similar in prod most of the time). Also finally added facilities for ad hoc (non-atom) logging configuration.
|
||||
|
||||
|
@ -6,6 +6,7 @@ Overall quite happy with the state of Timbre as of this release. No major antici
|
|||
|
||||
### Features
|
||||
* Android appender, courtesy of AdamClements.
|
||||
* Rolling appender, courtesy of megayu.
|
||||
* Powerful, high-performance Carmine (Redis) appender: query-able, rotating serialized log entries by log level. See README or appender's docstring for details. (Recommended!)
|
||||
* Appender rate limits now specified in a more flexible format: `[ncalls window-msecs]`, e.g. `[1 2000]` for 1 write / 2000 msecs.
|
||||
* Appender rate limits now also apply (at 1/4 ncalls) to any _particular_ logging arguments in the same time window. This helps prevent a particular logging call from flooding the limiter and preventing other calls from getting through.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
**[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contribution) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "3.0.0-RC3"] ; Non-breaking upgrade - see CHANGELOG for details
|
||||
[com.taoensso/timbre "3.0.0-RC4"] ; Non-breaking upgrade - see CHANGELOG for details
|
||||
[com.taoensso/timbre "2.7.1"] ; Stable
|
||||
```
|
||||
|
||||
|
@ -31,7 +31,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 use the supplied ns-import helper:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "3.0.0-RC3"] ; project.clj
|
||||
[com.taoensso/timbre "3.0.0-RC4"] ; project.clj
|
||||
|
||||
(ns my-app (:require [taoensso.timbre :as timbre])) ; Your ns
|
||||
(timbre/refer-timbre) ; Provides useful Timbre aliases in this ns
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/timbre "3.0.0-RC3"
|
||||
(defproject com.taoensso/timbre "3.0.0-RC4"
|
||||
:description "Clojure logging & profiling library"
|
||||
:url "https://github.com/ptaoussanis/timbre"
|
||||
:license {:name "Eclipse Public License"
|
||||
|
|
Loading…
Reference in New Issue