mirror of https://github.com/status-im/timbre.git
[#191] Add clj only note to :timestamp-opts in README (@danielcompton)
This commit is contained in:
parent
242b262f0d
commit
ef8592f27d
|
@ -140,7 +140,7 @@ This is the biggest win over Java logging IMO.
|
||||||
:async? ; Dispatch using agent? Useful for slow appenders (clj only)
|
:async? ; Dispatch using agent? Useful for slow appenders (clj only)
|
||||||
:rate-limit ; [[ncalls-limit window-ms] <...>], or nil
|
:rate-limit ; [[ncalls-limit window-ms] <...>], or nil
|
||||||
:output-fn ; Optional override for inherited (fn [data]) -> string
|
:output-fn ; Optional override for inherited (fn [data]) -> string
|
||||||
:timestamp-opts ; Optional override for inherited {:pattern _ :locale _ :timezone _}
|
:timestamp-opts ; Optional override for inherited {:pattern _ :locale _ :timezone _} (clj only)
|
||||||
:ns-whitelist ; Optional, stacks with active config's whitelist
|
:ns-whitelist ; Optional, stacks with active config's whitelist
|
||||||
:ns-blacklist ; Optional, stacks with active config's blacklist
|
:ns-blacklist ; Optional, stacks with active config's blacklist
|
||||||
:middleware-fn ; Optional, stacks with active config's middleware
|
:middleware-fn ; Optional, stacks with active config's middleware
|
||||||
|
@ -161,7 +161,7 @@ This is the biggest win over Java logging IMO.
|
||||||
:output_ ; Forceable - final formatted output string created
|
:output_ ; Forceable - final formatted output string created
|
||||||
; by calling (output-fn <this-data-map>)
|
; by calling (output-fn <this-data-map>)
|
||||||
:msg_ ; Forceable - args as a string
|
:msg_ ; Forceable - args as a string
|
||||||
:timestamp_ ; Forceable - string
|
:timestamp_ ; Forceable - string (clj only)
|
||||||
:hostname_ ; Forceable - string (clj only)
|
:hostname_ ; Forceable - string (clj only)
|
||||||
:output-fn ; (fn [data]) -> formatted output string
|
:output-fn ; (fn [data]) -> formatted output string
|
||||||
; (see `default-output-fn` for details)
|
; (see `default-output-fn` for details)
|
||||||
|
|
|
@ -67,7 +67,7 @@
|
||||||
:async? ; Dispatch using agent? Useful for slow appenders (clj only)
|
:async? ; Dispatch using agent? Useful for slow appenders (clj only)
|
||||||
:rate-limit ; [[ncalls-limit window-ms] <...>], or nil
|
:rate-limit ; [[ncalls-limit window-ms] <...>], or nil
|
||||||
:output-fn ; Optional override for inherited (fn [data]) -> string
|
:output-fn ; Optional override for inherited (fn [data]) -> string
|
||||||
:timestamp-opts ; Optional override for inherited {:pattern _ :locale _ :timezone _}
|
:timestamp-opts ; Optional override for inherited {:pattern _ :locale _ :timezone _} (clj only)
|
||||||
:ns-whitelist ; Optional, stacks with active config's whitelist
|
:ns-whitelist ; Optional, stacks with active config's whitelist
|
||||||
:ns-blacklist ; Optional, stacks with active config's blacklist
|
:ns-blacklist ; Optional, stacks with active config's blacklist
|
||||||
:middleware-fn ; Optional, stacks with active config's middleware
|
:middleware-fn ; Optional, stacks with active config's middleware
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
:output_ ; Forceable - final formatted output string created
|
:output_ ; Forceable - final formatted output string created
|
||||||
; by calling (output-fn <this-data-map>)
|
; by calling (output-fn <this-data-map>)
|
||||||
:msg_ ; Forceable - args as a string
|
:msg_ ; Forceable - args as a string
|
||||||
:timestamp_ ; Forceable - string
|
:timestamp_ ; Forceable - string (clj only)
|
||||||
:hostname_ ; Forceable - string (clj only)
|
:hostname_ ; Forceable - string (clj only)
|
||||||
:output-fn ; (fn [data]) -> formatted output string
|
:output-fn ; (fn [data]) -> formatted output string
|
||||||
; (see `default-output-fn` for details)
|
; (see `default-output-fn` for details)
|
||||||
|
|
Loading…
Reference in New Issue