summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-03-20 18:04:02 -0700
committerMathieu Chartier <mathieuc@google.com>2015-03-20 18:08:28 -0700
commitcd8f6377821370cb471fb21ae095dfaa204e4410 (patch)
treee3d4763b0a253fbfeab368acf714826934aaeb1d
parent8c66b5fd8015116cede7a67ebdd1229ff7315f49 (diff)
downloadart-cd8f6377821370cb471fb21ae095dfaa204e4410.zip
art-cd8f6377821370cb471fb21ae095dfaa204e4410.tar.gz
art-cd8f6377821370cb471fb21ae095dfaa204e4410.tar.bz2
Remove some spammy logging
Did not provide useful info and or was redundant. Change-Id: I42da705debc43460cdd3fdf16e9e9ceb2c137001
-rw-r--r--compiler/dex/pass_manager.cc2
-rw-r--r--runtime/gc/heap.cc1
2 files changed, 1 insertions, 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();