From 9a5ada2fb43345c545d44546086a37187de0aa53 Mon Sep 17 00:00:00 2001 From: Georg Seibt <seibt@fim.uni-passau.de> Date: Tue, 3 May 2016 21:33:41 +0200 Subject: [PATCH] set stderr/stdout logging to finer --- .../fim/seibt/gitwrapper/process/ProcessExecutor.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 054c6ba..7a098e2 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)); } -- GitLab