Skip to content

Commit

Permalink
Only output "warning" about keeping job when the debug flags is actua…
Browse files Browse the repository at this point in the history
…lly used
  • Loading branch information
JCash committed Dec 19, 2023
1 parent 995ed68 commit 9405b66
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,10 @@ public void buildEngineAsync(HttpServletRequest _request,
}
}
else {
LOGGER.info("Keeping job folder due to debug flags");
if (!deleteDirectory)
{
LOGGER.info("Keeping job folder due to debug flags");
}
}
}
}
Expand Down

0 comments on commit 9405b66

Please sign in to comment.