Skip to content

Commit 0f4aec0

Browse files
committed
style: location key as string for consistency
1 parent 39fe535 commit 0f4aec0

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

deps.edn

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88
com.stuartsierra/component {:mvn/version "1.1.0"}
99
com.taoensso/telemere {:mvn/version "1.0.0-beta25"}
1010
com.taoensso/slf4j-telemere {:mvn/version "1.0.0-beta21"}
11-
;; com.taoensso/timbre {:mvn/version "6.3.1"}
12-
;; viesti/timbre-json-appender {:mvn/version "0.2.13"}
13-
;; com.fzakaria/slf4j-timbre {:mvn/version "0.3.21"}
14-
org.clojure/data.json {:mvn/version "2.5.0"}
11+
org.clojure/data.json {:mvn/version "2.5.0"}
1512
aero/aero {:mvn/version "1.1.6"}
1613
metosin/muuntaja {:mvn/version "0.6.8"}
1714
metosin/malli {:mvn/version "0.11.0"}

src/com/moclojer/components/logs.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
(merge {"thread/group" (:group thread)
2828
"thread/name" (:name thread)
2929
"thread/id" (:id thread)
30-
:location (str (:ns location) ":"
31-
(:line location) "x"
32-
(:column location))})
30+
"location" (str (:ns location) ":"
31+
(:line location) "x"
32+
(:column location))})
3333
(->str-values)
3434
(json/write-str)))
3535

0 commit comments

Comments
 (0)