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 2013/03/04 23:27:04 UTC

svn commit: r1452571 - /incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp

Author: vinodkone
Date: Mon Mar  4 22:27:03 2013
New Revision: 1452571

URL: http://svn.apache.org/r1452571
Log:
Changed noisy allocator logging from LOG(INFO) to VLOG(1).

From: Ben Mahler <be...@gmail.com>
Review: https://reviews.apache.org/r/9711

Modified:
    incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp

Modified: incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp?rev=1452571&r1=1452570&r2=1452571&view=diff
==============================================================================
--- incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp (original)
+++ incubator/mesos/trunk/src/master/hierarchical_allocator_process.hpp Mon Mar  4 22:27:03 2013
@@ -594,7 +594,7 @@ HierarchicalAllocatorProcess<UserSorter,
 
   allocate(slaves.keys());
 
-  LOG(INFO) << "Performed allocation for " << slaves.size() << " slaves in "
+  VLOG(1) << "Performed allocation for " << slaves.size() << " slaves in "
             << stopwatch.elapsed();
 }
 
@@ -614,8 +614,8 @@ HierarchicalAllocatorProcess<UserSorter,
 
   allocate(slaveIds);
 
-  LOG(INFO) << "Performed allocation for slave " << slaveId << " in "
-            << stopwatch.elapsed();
+  VLOG(1) << "Performed allocation for slave " << slaveId << " in "
+          << stopwatch.elapsed();
 }