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

trim output

parent 4e59366a
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ public class ProcessExecutor {
res.exitCode = p.waitFor();
LOG.fine(() -> String.format("Execution of '%s' returned exit code %d.", cmd, res.exitCode));
LOG.finest(() -> String.format("Execution of '%s' output:%n%s", cmd, res.output));
LOG.finest(() -> String.format("Execution of '%s' output:%n%s", cmd, res.output.trim()));
return Optional.of(res);
} catch (IOException | InterruptedException e) {
......
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