couple different options. my #1 recommendation is log4j. you will have to rewrite your logs.
alternatively, you can redirect System.err to point to a file. anytime you do exception.printStackTrace() it prints to System.err which will go to your file. this will be the least amount of code change i think.
you can also use another framework. i think java.util has something, but not as good as log4j.
or you can just write your own code to handle writing to files
Quote
as there is no environment for the compiler to print errors to
the compiler doesn't print runtime errors. it only prints compile time errors
This post was edited by carteblanche on Oct 18 2012 08:08pm