Fork me on GitHub
#component
<
2018-05-03
>
gfredericks12:05:32

does anybody else consistently see nil causes on exceptions thrown during startup? i.e., I see component's wrapped exception but can't find the underlying so I don't know what actually went wrong

hiredman15:05:12

do you have that jvm option turned off where it sometimes omits stracktraces?

hiredman15:05:43

-XX:-OmitStackTraceInFastThrow

hiredman15:05:07

turns it off

hiredman15:05:44

but no, I don't think I've seen that, I might also look at however the exception is being reported (logging, some exception pretty printer) some of those do terrible things

gfredericks23:05:42

It's not missing just a stacktrace but the whole throwable. I can get the ex-info thrown by component and call getCause and it's nil

gfredericks23:05:12

I guess I'll try debugging it next time since apparently I'm the crazy one