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

View File

@ -70,7 +70,7 @@ public abstract class DMPMJob ***REMOVED***
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***