Hello after following the advice here Running JAR file on Windows, I've managed to execute my .jar
application whenever I double-click on it in Windows (it is a JFrame application).
However, when an certain exceptions occurs, I do e.printstackTrace();
and generate a custom error message to the UI. When I launch the '.jar' file from the command prompt, the standard error stream is the console. My question is, where does the exception trace go when I run the .jar via double-clicking?
This is a "toy" application, so I would like to avoid a logging mechanism - I only need a place to dump all exception traces for later debugging.
Thank you.