summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2014-05-08 16:36:17 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-05-08 16:36:17 +0000
commit13ff810b664549e321113099af9ed9242b31a36f (patch)
tree63078247ada95f2d599a88eea0e54a07016a3114
parent18694f430b1e499954e5e4fcdbd6ac07a07763ae (diff)
parent52ba1996f1d8089f0101d189a5cdd27356206b1c (diff)
Merge "Fix spammy "Disabling background compaction for non zygote" message."
-rw-r--r--runtime/gc/heap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc
index 5d38b02f4a..56ccf06d7a 100644
--- a/runtime/gc/heap.cc
+++ b/runtime/gc/heap.cc
@@ -175,7 +175,7 @@ Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max
large_object_threshold_ = kDefaultLargeObjectThreshold;
// Background compaction is currently not supported for command line runs.
if (background_collector_type_ != foreground_collector_type_) {
- LOG(WARNING) << "Disabling background compaction for non zygote";
+ VLOG(heap) << "Disabling background compaction for non zygote";
background_collector_type_ = foreground_collector_type_;
}
}