You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2017/05/26 23:29:55 UTC

[2/6] mesos git commit: Minor logging cleanup to put open/close quotes on the same line.

Minor logging cleanup to put open/close quotes on the same line.

Review: https://reviews.apache.org/r/59594


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

Branch: refs/heads/master
Commit: 5ba175f5ef51d55c4b510c8e5d406bda0ff631ec
Parents: 5c178b3
Author: Benjamin Mahler <bm...@apache.org>
Authored: Thu May 25 16:53:08 2017 -0700
Committer: Benjamin Mahler <bm...@apache.org>
Committed: Fri May 26 16:29:44 2017 -0700

----------------------------------------------------------------------
 src/slave/slave.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/5ba175f5/src/slave/slave.cpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index bd84bc5..055e496 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -4017,9 +4017,9 @@ void Slave::reregisterExecutor(
     << framework->state;
 
   if (framework->state == Framework::TERMINATING) {
-    LOG(WARNING) << "Shutting down executor '" << executorId
-                 << "' as the framework " << frameworkId
-                 << " is terminating";
+    LOG(WARNING) << "Shutting down executor '" << executorId << "'"
+                 << " of framework " << frameworkId
+                 << " because the framework is terminating";
 
     reply(ShutdownExecutorMessage());
     return;