Skip to content

Commit

Permalink
[mod] Swap ctx, kvs position in default print output
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Nov 5, 2024
1 parent 2193fa4 commit bd69f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/main/src/taoensso/telemere/utils.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,8 @@
#?(:clj (when (enc/and* host incl-host?) (af " host: " (vf host)))) ; {:keys [ name ip]}
#?(:clj (when (enc/and* thread incl-thread?) (af " thread: " (vf thread)))) ; {:keys [group name id]}
(when (enc/not-empty-coll data) (af " data: " (vf data)))
(when (enc/and* kvs incl-kvs?) (af " kvs: " (vf kvs)))
(when (enc/not-empty-coll ctx) (af " ctx: " (vf ctx))))
(when (enc/not-empty-coll ctx) (af " ctx: " (vf ctx)))
(when (enc/and* kvs incl-kvs?) (af " kvs: " (vf kvs))))

(let [{:keys [run-form error]} signal]
(when run-form
Expand Down

0 comments on commit bd69f0c

Please sign in to comment.