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

use FINE for the "No Output" message

parent 3ac1ab5b
No related branches found
No related tags found
No related merge requests found
......@@ -92,13 +92,13 @@ public class ProcessExecutor {
LOG.fine(() -> String.format("Execution of '%s' returned exit code %d.", cmd, res.exitCode));
if (res.stdOut.isEmpty()) {
LOG.finest(() -> String.format("Execution of '%s' returned no standard output.", cmd));
LOG.fine(() -> String.format("Execution of '%s' returned no standard output.", cmd));
} else {
LOG.finest(() -> String.format("Execution of '%s' returned standard output:%n%s", cmd, res.stdOut));
}
if (res.stdErr.isEmpty()) {
LOG.finest(() -> String.format("Execution of '%s' returned no standard error output.", cmd));
LOG.fine(() -> String.format("Execution of '%s' returned no standard error output.", cmd));
} else {
LOG.finest(() -> String.format("Execution of '%s' returned standard error output:%n%s", cmd, res.stdErr));
}
......
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