diff options
| author | 2014-05-07 14:39:21 -0700 | |
|---|---|---|
| committer | 2014-05-07 14:40:04 -0700 | |
| commit | 52ba1996f1d8089f0101d189a5cdd27356206b1c (patch) | |
| tree | 86e52eca95a715af105a218bdae6c8134b2d2a71 | |
| parent | 41961e2ad0aa064db9fefdd2a52368047961115a (diff) | |
Fix spammy "Disabling background compaction for non zygote" message.
Change-Id: I4abd85f75341ffc3cc38200d8b43a77b9b87c744
| -rw-r--r-- | runtime/gc/heap.cc | 2 |
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_; } } |