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 07:01:35 UTC

svn commit: r1131720 - in /incubator/mesos/trunk/src: master.cpp simple_allocator.cpp

Author: benh
Date: Sun Jun  5 05:01:35 2011
New Revision: 1131720

URL: http://svn.apache.org/viewvc?rev=1131720&view=rev
Log:
Removed spammy log statements

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

Modified: incubator/mesos/trunk/src/master.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master.cpp?rev=1131720&r1=1131719&r2=1131720&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master.cpp (original)
+++ incubator/mesos/trunk/src/master.cpp Sun Jun  5 05:01:35 2011
@@ -535,7 +535,6 @@ void Master::operator () ()
     }
 
     case M2M_TIMER_TICK: {
-      LOG(INFO) << "Allocator timer tick";
       foreachpair (_, Framework *framework, frameworks)
         framework->removeExpiredFilters();
       allocator->timerTick();

Modified: incubator/mesos/trunk/src/simple_allocator.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/simple_allocator.cpp?rev=1131720&r1=1131719&r2=1131720&view=diff
==============================================================================
--- incubator/mesos/trunk/src/simple_allocator.cpp (original)
+++ incubator/mesos/trunk/src/simple_allocator.cpp Sun Jun  5 05:01:35 2011
@@ -162,8 +162,6 @@ void SimpleAllocator::makeNewOffers(Slav
 
 void SimpleAllocator::makeNewOffers(const vector<Slave*>& slaves)
 {
-  LOG(INFO) << "Running makeNewOffers...";
-  
   // Get an ordering of frameworks to send offers to
   vector<Framework*> ordering = getAllocationOrdering();
   if (ordering.size() == 0)