Skip to content
Snippets Groups Projects
Commit 0c48e9a0 authored by Georg Seibt's avatar Georg Seibt :nerd:
Browse files

logging fix

parent 3928e871
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,7 @@ public class ProcessExecutor {
LOG.finer(() -> String.format("Execution of '%s' returned no standard error output.", cmd));
} else if (LOG.isLoggable(FINER)) {
LOG.finer(() -> String.format("Execution of '%s' returned standard error output.", cmd));
LOG.finest(() -> String.format("Standard output of '%s' was:%n%s", cmd, res.getStdErrTrimmed()));
LOG.finest(() -> String.format("Standard error output of '%s' was:%n%s", cmd, res.getStdErrTrimmed()));
}
return Optional.of(res);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment