I have a Java GUI-based application that writes some diagnostic messages to System.out and System.err. Where are these messages output when running on Windows? (For example, on Mac OS X, they're printed to the system console log.)
Edit
I should add that the Java application is packaged as a .exe, so (right now) I can't launch it using java
. (I can copy the individual .JAR files to the Windows test machine, I suppose.)
Also, it's an app I inherited that didn't use a logging framework before; I'd like to modify it to use one, but I was hoping to quickly get some log output to diagnose a problem right now.