mirror of https://github.com/status-im/timbre.git
Pull default fmt-output-fn out of config (useful in custom reporting, etc.)
This commit is contained in:
parent
2a303ef2af
commit
40a3e58545
|
@ -88,6 +88,15 @@
|
||||||
|
|
||||||
;;;; Default configuration and appenders
|
;;;; Default configuration and appenders
|
||||||
|
|
||||||
|
(defn default-fmt-output-fn
|
||||||
|
[{:keys [level throwable message timestamp hostname ns]}
|
||||||
|
;; Any extra appender-specific opts:
|
||||||
|
& [{:keys [nofonts?] :as appender-fmt-output-opts}]]
|
||||||
|
;; <timestamp> <hostname> <LEVEL> [<ns>] - <message> <throwable>
|
||||||
|
(format "%s %s %s [%s] - %s%s"
|
||||||
|
timestamp hostname (-> level name str/upper-case) ns (or message "")
|
||||||
|
(or (stacktrace throwable "\n" (when nofonts? {})) "")))
|
||||||
|
|
||||||
(def example-config
|
(def example-config
|
||||||
"APPENDERS
|
"APPENDERS
|
||||||
An appender is a map with keys:
|
An appender is a map with keys:
|
||||||
|
@ -148,14 +157,7 @@
|
||||||
;; Output formatter used by built-in appenders. Custom appenders may (but are
|
;; Output formatter used by built-in appenders. Custom appenders may (but are
|
||||||
;; not required to use) its output (:output). Extra per-appender opts can be
|
;; not required to use) its output (:output). Extra per-appender opts can be
|
||||||
;; supplied as an optional second (map) arg.
|
;; supplied as an optional second (map) arg.
|
||||||
:fmt-output-fn
|
:fmt-output-fn default-fmt-output-fn
|
||||||
(fn [{:keys [level throwable message timestamp hostname ns]}
|
|
||||||
;; Any extra appender-specific opts:
|
|
||||||
& [{:keys [nofonts?] :as appender-fmt-output-opts}]]
|
|
||||||
;; <timestamp> <hostname> <LEVEL> [<ns>] - <message> <throwable>
|
|
||||||
(format "%s %s %s [%s] - %s%s"
|
|
||||||
timestamp hostname (-> level name str/upper-case) ns (or message "")
|
|
||||||
(or (stacktrace throwable "\n" (when nofonts? {})) "")))
|
|
||||||
|
|
||||||
:shared-appender-config {} ; Provided to all appenders via :ap-config key
|
:shared-appender-config {} ; Provided to all appenders via :ap-config key
|
||||||
:appenders
|
:appenders
|
||||||
|
|
Loading…
Reference in New Issue