diff --git a/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java b/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java index 054c6ba4cfa97faa053f8bd6e2e71868489d0554..7a098e266b850e64092463f3682aeec7dfb3407b 100644 --- a/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java +++ b/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java @@ -92,16 +92,16 @@ public class ProcessExecutor { LOG.fine(() -> String.format("Execution of '%s' returned exit code %d.", cmd, res.exitCode)); if (res.stdOut.isEmpty()) { - LOG.fine(() -> String.format("Execution of '%s' returned no standard output.", cmd)); + LOG.finer(() -> String.format("Execution of '%s' returned no standard output.", cmd)); } else { - LOG.fine(() -> String.format("Execution of '%s' returned standard output.", cmd)); + LOG.finer(() -> String.format("Execution of '%s' returned standard output.", cmd)); LOG.finest(() -> String.format("Standard output of '%s' was:%n%s", cmd, res.stdOut)); } if (res.stdErr.isEmpty()) { - LOG.fine(() -> String.format("Execution of '%s' returned no standard error output.", cmd)); + LOG.finer(() -> String.format("Execution of '%s' returned no standard error output.", cmd)); } else { - LOG.fine(() -> String.format("Execution of '%s' returned standard error output.", cmd)); + 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.stdErr)); }