mirror of
https://github.com/penpot/penpot.git
synced 2026-09-25 13:26:16 +00:00
✨ Add the ability to pass body to a log entry
This commit is contained in:
parent
4b6d3546e0
commit
e0f2c4e0aa
@ -153,14 +153,29 @@
|
|||||||
(defn build-message
|
(defn build-message
|
||||||
[props]
|
[props]
|
||||||
(loop [props (seq props)
|
(loop [props (seq props)
|
||||||
result []]
|
result []
|
||||||
|
body nil]
|
||||||
(if-let [[k v] (first props)]
|
(if-let [[k v] (first props)]
|
||||||
(if (simple-ident? k)
|
(cond
|
||||||
|
(simple-ident? k)
|
||||||
(recur (next props)
|
(recur (next props)
|
||||||
(conj result (str (name k) "=" (pr-str v))))
|
(conj result (str (name k) "=" (pr-str v)))
|
||||||
|
body)
|
||||||
|
|
||||||
|
(= ::body k)
|
||||||
(recur (next props)
|
(recur (next props)
|
||||||
result))
|
result
|
||||||
(str/join ", " result))))
|
v)
|
||||||
|
|
||||||
|
:else
|
||||||
|
(recur (next props)
|
||||||
|
result
|
||||||
|
body))
|
||||||
|
|
||||||
|
(let [message (str/join ", " result)]
|
||||||
|
(if (string? body)
|
||||||
|
(str message "\n" body)
|
||||||
|
message)))))
|
||||||
|
|
||||||
(defn build-stack-trace
|
(defn build-stack-trace
|
||||||
[cause]
|
[cause]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user