This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-10-19
Channels
- # announcements (9)
- # babashka (5)
- # babashka-sci-dev (23)
- # beginners (160)
- # calva (78)
- # cider (23)
- # clj-commons (2)
- # clj-kondo (5)
- # cljdoc (19)
- # cljs-dev (8)
- # clojure (54)
- # clojure-australia (1)
- # clojure-czech (2)
- # clojure-dev (17)
- # clojure-europe (8)
- # clojure-italy (8)
- # clojure-nl (2)
- # clojure-sg (3)
- # clojure-uk (4)
- # clojurescript (70)
- # community-development (8)
- # core-async (8)
- # cursive (7)
- # datahike (12)
- # datalog (22)
- # datomic (20)
- # events (1)
- # fulcro (43)
- # graalvm (92)
- # gratitude (5)
- # holy-lambda (77)
- # honeysql (1)
- # jobs (1)
- # lsp (111)
- # membrane (70)
- # nextjournal (13)
- # off-topic (73)
- # pathom (1)
- # polylith (8)
- # portal (32)
- # re-frame (3)
- # reagent (4)
- # reitit (5)
- # releases (2)
- # reveal (4)
- # xtdb (22)
I’m not sure if I should ask here or in #nrepl
When upgrading my cider/cider-nrep
dependency I loose the logs. The last version that works is “0.25.11”, and starting from “0.26.0" I just don’t have the logs anymore. I had a quick look at the changes and nothing jumps out - is it something known?
cider/cider-nrepl {:mvn/version
;; "0.25.4" = OK
;; "0.25.10" = OK
;; "0.25.11" = OK
"0.25.11"
;; "0.26.0" = KO
;; "0.27.2" = KO
}
In case it matters, I am using deps.edn
+`clojure.tools.logging` +`log4j2`if possible create a repro with an analog setup (deps.edn, logback.xml etc) and create a GH issue, LMK :) (a part of the repro is that it should be visible over iTerm - adding Emacs to the mix makes things less certain)
I am looking at logs in iTerm actually - I tried “0.27.2” so it should not be that. I’ll wait a bit before jumping on a repro in case something knows what it is but I agree that will make it easier if that’s not the case.
helpful function inspired by calva's latest feature:
(defun personal/insert-comment ()
(interactive)
(end-of-defun)
(insert "\n")
(insert "(comment\n )\n")
(clojure-backward-logical-sexp)
(forward-char 1)
(clojure-forward-logical-sexp)
(insert "\n")
(indent-according-to-mode))
no worries. i honestly didn't know about how paredit did that but i honestly never type closing parens ha