From 76bba948fc564c80dd4e3628b710750d92dbffa1 Mon Sep 17 00:00:00 2001
From: Georg Seibt <seibt@fim.uni-passau.de>
Date: Tue, 3 May 2016 20:34:03 +0200
Subject: [PATCH] log command output on finest, log whether they returned
 output on fine

---
 .../fim/seibt/gitwrapper/process/ProcessExecutor.java       | 6 ++++--
 1 file changed, 4 insertions(+), 2 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 ac501ed..054c6ba 100644
--- a/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java
+++ b/src/de/uni_passau/fim/seibt/gitwrapper/process/ProcessExecutor.java
@@ -94,13 +94,15 @@ public class ProcessExecutor {
             if (res.stdOut.isEmpty()) {
                 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));
+                LOG.fine(() -> 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));
             } else {
-                LOG.finest(() -> String.format("Execution of '%s' returned standard error output:%n%s", cmd, res.stdErr));
+                LOG.fine(() -> String.format("Execution of '%s' returned standard error output.", cmd));
+                LOG.finest(() -> String.format("Standard output of '%s' was:%n%s", cmd, res.stdErr));
             }
 
             return Optional.of(res);
-- 
GitLab