Fork me on GitHub
#nrepl
<
2023-09-20
>
pez07:09:28

Calva fails to connect the repl for some users, with the strange error message: ERROR: Unhandled REPL handler exception processing message {:op eval, :code ns, :id 1}`` . Like here: https://github.com/BetterThanTomorrow/calva/issues/2316 Anyone knows how I can get more verbose messages from the server?

jpmonettas10:09:19

hmmm weird, it looks like it should have printed the stack trace on err, right after that message : Here it logs that error : https://github.com/nrepl/nrepl/blob/5839006c5f522fd5e6cf2adbcc5b59e4bd0677dd/src/clojure/nrepl/server.clj#L26C1-L27 Here it should be printing the stacktrace since the first arg is a Throwable https://github.com/nrepl/nrepl/blob/5839006c5f522fd5e6cf2adbcc5b59e4bd0677dd/src/clojure/nrepl/misc.clj#L8-L14