summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2014-10-23 17:59:19 -0700
committer Andreas Gampe <agampe@google.com> 2014-10-23 17:59:19 -0700
commitaa756f3f60e75ba3a84f0e4122016a782a95d825 (patch)
tree3babae6073f6a185b4538c44811ee748ab39b814
parente8bd8ac7fb41545ef342c8120c2e83d2fef20a50 (diff)
ART: Remove old LOG(INFO)
Clean up output, it's annoying. Change-Id: Ifc1972dd3e988f36f781dc989d23cdb93e6f828e
-rw-r--r--runtime/instrumentation.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/instrumentation.cc b/runtime/instrumentation.cc
index f981522161..fc3da3635b 100644
--- a/runtime/instrumentation.cc
+++ b/runtime/instrumentation.cc
@@ -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() {