mirror of https://github.com/status-im/timbre.git
Default output fn: try use ?file when ?ns-str unavailable
This commit is contained in:
parent
4eb8433f8e
commit
a38dceff3b
|
@ -38,13 +38,13 @@
|
||||||
([ data] (default-output-fn nil data))
|
([ data] (default-output-fn nil data))
|
||||||
([opts data] ; For partials
|
([opts data] ; For partials
|
||||||
(let [{:keys [no-stacktrace? stacktrace-fonts]} opts
|
(let [{:keys [no-stacktrace? stacktrace-fonts]} opts
|
||||||
{:keys [level ?err #_vargs msg_ ?ns-str hostname_
|
{:keys [level ?err #_vargs msg_ ?ns-str ?file hostname_
|
||||||
timestamp_ ?line]} data]
|
timestamp_ ?line]} data]
|
||||||
(str
|
(str
|
||||||
#+clj (force timestamp_) #+clj " "
|
#+clj (force timestamp_) #+clj " "
|
||||||
#+clj (force hostname_) #+clj " "
|
#+clj (force hostname_) #+clj " "
|
||||||
(str/upper-case (name level)) " "
|
(str/upper-case (name level)) " "
|
||||||
"[" (or ?ns-str "?") ":" (or ?line "?") "] - "
|
"[" (or ?ns-str ?file "?") ":" (or ?line "?") "] - "
|
||||||
(force msg_)
|
(force msg_)
|
||||||
(when-not no-stacktrace?
|
(when-not no-stacktrace?
|
||||||
(when-let [err ?err]
|
(when-let [err ?err]
|
||||||
|
|
Loading…
Reference in New Issue