From cd8f6377821370cb471fb21ae095dfaa204e4410 Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Fri, 20 Mar 2015 18:04:02 -0700 Subject: Remove some spammy logging Did not provide useful info and or was redundant. Change-Id: I42da705debc43460cdd3fdf16e9e9ceb2c137001 --- compiler/dex/pass_manager.cc | 2 +- runtime/gc/heap.cc | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/dex/pass_manager.cc b/compiler/dex/pass_manager.cc index 6d58f65..6377a6c 100644 --- a/compiler/dex/pass_manager.cc +++ b/compiler/dex/pass_manager.cc @@ -33,7 +33,7 @@ void PassManager::CreateDefaultPassList() { // Add each pass which isn't disabled into default_pass_list_. for (const auto* pass : passes_) { if (options_.GetDisablePassList().find(pass->GetName()) != std::string::npos) { - LOG(INFO) << "Skipping disabled pass " << pass->GetName(); + VLOG(compiler) << "Skipping disabled pass " << pass->GetName(); } else { default_pass_list_.push_back(pass); } diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc index dff8f4d..51cf558 100644 --- a/runtime/gc/heap.cc +++ b/runtime/gc/heap.cc @@ -2061,7 +2061,6 @@ void Heap::PreZygoteFork() { MutexLock mu(self, zygote_creation_lock_); // Try to see if we have any Zygote spaces. if (HasZygoteSpace()) { - LOG(WARNING) << __FUNCTION__ << " called when we already have a zygote space."; return; } Runtime::Current()->GetInternTable()->SwapPostZygoteWithPreZygote(); -- cgit v1.1