We have an application that we access over Java web start internally at our office.
all the logs produced by the app are displayed in Firefox\'s console.
wha
I figured using the System.setOut method could be used to redirect all System.out.println() outputs to a file.
Hence, this could be used in my app :
System.setOut(new PrintStream("C:\\log.txt"));