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:08 UTC

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

Author: benh
Date: Sun Jun  5 09:21:08 2011
New Revision: 1132296

URL: http://svn.apache.org/viewvc?rev=1132296&view=rev
Log:
Updated some log lines.

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

Modified: incubator/mesos/trunk/src/master/slaves_manager.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master/slaves_manager.cpp?rev=1132296&r1=1132295&r2=1132296&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master/slaves_manager.cpp (original)
+++ incubator/mesos/trunk/src/master/slaves_manager.cpp Sun Jun  5 09:21:08 2011
@@ -920,7 +920,8 @@ Promise<HttpResponse> SlavesManager::act
     return HttpNotFoundResponse();
   }
 
-  LOG(INFO) << "Asked to activate slave at " << hostname << ":" << port;
+  LOG(INFO) << "HTTP request to activate slave at "
+	    << hostname << ":" << port;
 
   if (activate(hostname, port)) {
     return HttpOKResponse();
@@ -966,7 +967,8 @@ Promise<HttpResponse> SlavesManager::dea
     return HttpNotFoundResponse();
   }
 
-  LOG(INFO) << "Asked to deactivate slave at " << hostname << ":" << port;
+  LOG(INFO) << "HTTP request to deactivate slave at "
+	    << hostname << ":" << port;
 
   if (deactivate(hostname, port)) {
     return HttpOKResponse();