Merge "Reduce GC log spam."
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc
index 82d5830..e857b25 100644
--- a/runtime/gc/heap.cc
+++ b/runtime/gc/heap.cc
@@ -1568,7 +1568,7 @@
count_performed_homogeneous_space_compaction_++;
// Print statics log and resume all threads.
uint64_t duration = NanoTime() - start_time;
- LOG(INFO) << "Heap homogeneous space compaction took " << PrettyDuration(duration) << " size: "
+ VLOG(gc) << "Heap homogeneous space compaction took " << PrettyDuration(duration) << " size: "
<< PrettySize(space_size_before_compaction) << " -> "
<< PrettySize(space_size_after_compaction) << " compact-ratio: "
<< std::fixed << static_cast<double>(space_size_after_compaction) /
@@ -1719,7 +1719,7 @@
} else {
saved_str = " expanded " + PrettySize(-delta_allocated);
}
- LOG(INFO) << "Heap transition to " << process_state_ << " took "
+ VLOG(gc) << "Heap transition to " << process_state_ << " took "
<< PrettyDuration(duration) << saved_str;
}