OSDN Git Service

ART: Remove old LOG(INFO)
authorAndreas Gampe <agampe@google.com>
Fri, 24 Oct 2014 00:59:19 +0000 (17:59 -0700)
committerAndreas Gampe <agampe@google.com>
Fri, 24 Oct 2014 00:59:19 +0000 (17:59 -0700)
Clean up output, it's annoying.

Change-Id: Ifc1972dd3e988f36f781dc989d23cdb93e6f828e

runtime/instrumentation.cc

index f981522..fc3da36 100644 (file)
@@ -633,7 +633,6 @@ void Instrumentation::InstrumentQuickAllocEntryPointsLocked() {
     SetEntrypointsInstrumented(true);
   }
   ++quick_alloc_entry_points_instrumentation_counter_;
-  LOG(INFO) << "Counter: " << quick_alloc_entry_points_instrumentation_counter_;
 }
 
 void Instrumentation::UninstrumentQuickAllocEntryPointsLocked() {
@@ -643,7 +642,6 @@ void Instrumentation::UninstrumentQuickAllocEntryPointsLocked() {
   if (quick_alloc_entry_points_instrumentation_counter_ == 0) {
     SetEntrypointsInstrumented(false);
   }
-  LOG(INFO) << "Counter: " << quick_alloc_entry_points_instrumentation_counter_;
 }
 
 void Instrumentation::ResetQuickAllocEntryPoints() {