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 ac501edc1e24cffba9f7da935dc3d990e462e2c7..054c6ba4cfa97faa053f8bd6e2e71868489d0554 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);