You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2015/04/09 20:34:00 UTC

mesos git commit: Bumped the log level for dropped messages.

Repository: mesos
Updated Branches:
  refs/heads/master d9315d97a -> a5a28336b


Bumped the log level for dropped messages.

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


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

Branch: refs/heads/master
Commit: a5a28336b93f2fee5b87f0638b799bd5d05be7f1
Parents: d9315d9
Author: Vinod Kone <vi...@gmail.com>
Authored: Tue Apr 7 14:46:28 2015 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Thu Apr 9 11:33:24 2015 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/src/process.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a5a28336/3rdparty/libprocess/src/process.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/process.cpp b/3rdparty/libprocess/src/process.cpp
index cf4e364..97ac09f 100644
--- a/3rdparty/libprocess/src/process.cpp
+++ b/3rdparty/libprocess/src/process.cpp
@@ -2045,7 +2045,7 @@ bool ProcessManager::deliver(
   if (ProcessReference receiver = use(to)) {
     return deliver(receiver, event, sender);
   }
-  VLOG(1) << "Dropped / Lost event for PID: " << to;
+  VLOG(2) << "Dropping event for process " << to;
 
   delete event;
   return false;