Repository: mesos
Updated Branches:
  refs/heads/master 8347ec09f -> b4a345a31


Fixed an incorrect line break in the checker process.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b4a345a3
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b4a345a3
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/b4a345a3

Branch: refs/heads/master
Commit: b4a345a3172b02b1eef20c59c60ce6a90967ff31
Parents: 8347ec0
Author: Greg Mann <gregorywm...@gmail.com>
Authored: Mon Aug 21 15:57:29 2017 -0700
Committer: Greg Mann <gregorywm...@gmail.com>
Committed: Mon Aug 21 15:57:29 2017 -0700

----------------------------------------------------------------------
 src/checks/checker_process.cpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/b4a345a3/src/checks/checker_process.cpp
----------------------------------------------------------------------
diff --git a/src/checks/checker_process.cpp b/src/checks/checker_process.cpp
index 4aa5b2d..81d45b3 100644
--- a/src/checks/checker_process.cpp
+++ b/src/checks/checker_process.cpp
@@ -645,12 +645,10 @@ void CheckerProcess::___nestedCommandCheck(
     tie(stdoutReceived, stderrReceived) = checkOutput.get();
 
     LOG(INFO) << "Output of the " << name << " for task '" << taskId
-              << "' (stdout):" << std::endl
-              << stdoutReceived;
+              << "' (stdout):" << std::endl << stdoutReceived;
 
     LOG(INFO) << "Output of the " << name << " for task '" << taskId
-              << "' (stderr):" << std::endl
-              << stderrReceived;
+              << "' (stderr):" << std::endl << stderrReceived;
   }
 
   waitNestedContainer(checkContainerId)

Reply via email to