change perms on append too

This commit is contained in:
zzz
2010-10-07 15:13:54 +00:00
parent 8ac5d5d5fc
commit 373fce2988
2 changed files with 5 additions and 4 deletions

View File

@ -1,10 +1,11 @@
package net.i2p.router;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import net.i2p.util.SecureFileOutputStream;
/**
* This is the class called by the runplain.sh script on linux
* and the i2p.exe launcher on Windows.
@ -33,7 +34,7 @@ public class RouterLaunch {
}
System.setProperty(PROP_WRAPPER_LOG, logfile.getAbsolutePath());
try {
System.setOut(new PrintStream(new FileOutputStream(logfile, true)));
System.setOut(new PrintStream(new SecureFileOutputStream(logfile, true)));
} catch (IOException ioe) {
ioe.printStackTrace();
}