This commit is contained in:
Nunzio Andrea Galante 2017-05-15 15:51:20 +00:00
parent c8ce04c364
commit 79e801c2ec
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public abstract class DMPMJob {
File path = new File(worker.getWorkdir() + File.separator + "jobs");
path.mkdirs();
File n = new File(this.jobLogs + File.separator + this.id);
FileOutputStream fos = new FileOutputStream(n);
FileOutputStream fos = new FileOutputStream(n, true);
PrintStream ps = new PrintStream(fos);
return worker.execute(ps);
***REMOVED***