| 2 |
|
|
| 3 |
|
import java.io.File; |
| 4 |
|
import java.io.FileNotFoundException; |
| 5 |
+ |
import java.io.FileOutputStream; |
| 6 |
|
import java.io.PrintStream; |
| 7 |
|
|
| 8 |
|
import javax.swing.JFrame; |
| 33 |
|
} |
| 34 |
|
if (!debug) { |
| 35 |
|
try { |
| 36 |
< |
PrintStream ps = new PrintStream(new File(Paths.getPrefsPath(), |
| 37 |
< |
"updater_output.log")); |
| 36 |
> |
PrintStream ps = new PrintStream(new FileOutputStream(new File(Paths.getPrefsPath(), |
| 37 |
> |
"updater_output.log")), true); |
| 38 |
|
System.setOut(ps); |
| 39 |
|
System.setErr(ps); |
| 40 |
|
} catch (FileNotFoundException e1) { |