You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 11:21:01 UTC

svn commit: r1132295 - /incubator/mesos/trunk/src/master/master.cpp

Author: benh
Date: Sun Jun  5 09:21:01 2011
New Revision: 1132295

URL: http://svn.apache.org/viewvc?rev=1132295&view=rev
Log:
Added a log line in master.

Modified:
    incubator/mesos/trunk/src/master/master.cpp

Modified: incubator/mesos/trunk/src/master/master.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master/master.cpp?rev=1132295&r1=1132294&r2=1132295&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master/master.cpp (original)
+++ incubator/mesos/trunk/src/master/master.cpp Sun Jun  5 09:21:01 2011
@@ -1071,6 +1071,8 @@ void Master::deactivatedSlaveHostnamePor
       }
     }
 
+    LOG(INFO) << "Master now considering a slave at "
+	      << hostname << ":" << port << " as inactive";
     slaveHostnamePorts.erase(hostname, port);
   }
 }