Skip to content

Commit 09d4a34

Browse files
committed
Bump Logjam
1 parent 3824d72 commit 09d4a34

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

5+
### Changes
6+
7+
* Bump `logjam` to [0.3.0](https://github.com/clojure-emacs/logjam/blob/v0.3.0/CHANGELOG.md#030-2024-03-03).
8+
59
## Bugs fixed
610

711
* [#846](https://github.com/clojure-emacs/cider-nrepl/issues/846): `middleware.debug`: use `resolve` with `&env` to fix debugging in case of a local shadows a var.

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{:inline-dep (not= "true" (System/getenv "SKIP_INLINING_TEST_DEPS"))})
2222
^:inline-dep [org.clojure/tools.trace "0.7.11"]
2323
^:inline-dep [org.clojure/tools.reader "1.3.6"]
24-
[mx.cider/logjam "0.2.0"]]
24+
[mx.cider/logjam "0.3.0"]]
2525
:exclusions [org.clojure/clojure] ; see Clojure version matrix in profiles below
2626

2727
:pedantic? ~(if (and (System/getenv "CI")

src/cider/nrepl/middleware/log.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"Return the log `appender` in a Bencode compatible format."
2626
[appender]
2727
(-> (select-keys appender [:filters :logger :id :size :threshold])
28-
(assoc :consumers (map select-consumer (vals (:consumers appender))))))
28+
(assoc :consumers (map select-consumer (vals @(:consumers appender))))))
2929

3030
(defn- select-framework
3131
"Return the log `frameowrk` in a Bencode compatible format."

0 commit comments

Comments
 (0)