Fix ex-data separator

This commit is contained in:
Peter Taoussanis 2013-06-07 20:21:02 +07:00
parent 092f3b7925
commit 5d4e5f2739
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Current [semantic](http://semver.org/) version:
```clojure
[com.taoensso/timbre "2.1.0"] ; See commit history for breaking changes since 1.x
[com.taoensso/timbre "2.1.1"] ; See commit history for breaking changes since 1.x
```
# Timbre, a (sane) Clojure logging & profiling library
@ -26,7 +26,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.1.0"] ; project.clj
[com.taoensso/timbre "2.1.1"] ; project.clj
(ns my-app (:require [taoensso.timbre :as timbre
:refer (trace debug info warn error fatal spy)])) ; ns
```

View File

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

View File

@ -40,7 +40,7 @@
(defn stacktrace [throwable & [separator]]
(when throwable
(str separator (when-let [d (ex-data throwable)] (str d separator))
(str separator (when-let [d (ex-data throwable)] (str d " "))
(stacktrace/pst-str throwable))))
;;;; Default configuration and appenders