Merge "Fix spammy "Disabling background compaction for non zygote" message."
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc
index 5d38b02..56ccf06 100644
--- a/runtime/gc/heap.cc
+++ b/runtime/gc/heap.cc
@@ -175,7 +175,7 @@
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_;
}
}