Feature/24026 #3

Merged
giancarlo.panichi merged 194 commits from Feature/24026 into master 2023-11-09 19:12:54 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 79e801c2ec - Show all commits

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***