Currently I have a deployed executable jar file that creates large (7+ Gb) minidump files when it crashes. I would like to have a text representation of what caused the crash, n
I found a command line option that seems to do what I want. Launching the jar with
java -XX:-CreateMinidumpOnCrash -jar myJar.jar
Seems to do the trick and will generate error logs that are very small compared to the minidumps.