Auto-flush our log file after every line written.

This commit is contained in:
Michael Bayne
2005-03-15 22:08:38 +00:00
parent 2c667e9ced
commit 87ae5dc651
@@ -598,7 +598,7 @@ public class Getdown extends Thread
File log = new File(appDir, "launcher.log");
try {
PrintStream logOut = new PrintStream(
new BufferedOutputStream(new FileOutputStream(log)));
new BufferedOutputStream(new FileOutputStream(log)), true);
System.setOut(logOut);
System.setErr(logOut);
} catch (IOException ioe) {