Skip to content

Commit

Permalink
Bump Logjam
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Mar 3, 2024
1 parent 3824d72 commit 09d4a34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

### Changes

* Bump `logjam` to [0.3.0](https://github.com/clojure-emacs/logjam/blob/v0.3.0/CHANGELOG.md#030-2024-03-03).

## Bugs fixed

* [#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.
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{:inline-dep (not= "true" (System/getenv "SKIP_INLINING_TEST_DEPS"))})
^:inline-dep [org.clojure/tools.trace "0.7.11"]
^:inline-dep [org.clojure/tools.reader "1.3.6"]
[mx.cider/logjam "0.2.0"]]
[mx.cider/logjam "0.3.0"]]
:exclusions [org.clojure/clojure] ; see Clojure version matrix in profiles below

:pedantic? ~(if (and (System/getenv "CI")
Expand Down
2 changes: 1 addition & 1 deletion src/cider/nrepl/middleware/log.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"Return the log `appender` in a Bencode compatible format."
[appender]
(-> (select-keys appender [:filters :logger :id :size :threshold])
(assoc :consumers (map select-consumer (vals (:consumers appender))))))
(assoc :consumers (map select-consumer (vals @(:consumers appender))))))

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

0 comments on commit 09d4a34

Please sign in to comment.