Back
with-context (clj)
(source)macro
(with-context context & body)
Executes body so that given arbitrary data will be passed (as `:context`)
to appenders for any enclosed logging calls.
(with-context
{:user-name "Stu"} ; Will be incl. in data dispatched to appenders
(info "User request"))
See also `with-context+`.