Fork me on GitHub
#leiningen
<
2022-02-22
>
Michael Muldoon16:02:01

Basic question here: I'm running lein uberjar on a Luminus project, but the process just hangs indefinitely. How can I debug where it's getting stuck building? I was hoping for some verbose output option but I haven't found it.

vemv16:02:42

Maybe Ctrl+\ ? It should print a thread dump

👍 1
mikerod16:02:33

you can also try to get more insight via

DEBUG=true lein uberjar

🙌 1
Michael Muldoon17:02:46

The ctrl-\ helped out a lot -- I didn't know you could do that, and it helped me get to the bottom. Turns out I had been :requireing vlaaad.reveal in one class (artifact of playing around with reveal) and that got in the way of the compiling.

🍻 1