summaryrefslogtreecommitdiffstats
path: root/compiler/image_writer.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-01-21 00:47:26 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-01-21 00:47:27 +0000
commitb061b894260df6b68bb8a89ed4a1e85e576bb696 (patch)
treea3148602ff5348360fa170aeb0d62a3936263abd /compiler/image_writer.cc
parent29c9063a250f3e4a36fdfb7d1ea860a90bd57df3 (diff)
parentdc84301712f55ec3ad9a20c5a081e62e7d2441dd (diff)
downloadart-b061b894260df6b68bb8a89ed4a1e85e576bb696.zip
art-b061b894260df6b68bb8a89ed4a1e85e576bb696.tar.gz
art-b061b894260df6b68bb8a89ed4a1e85e576bb696.tar.bz2
Merge "ART: Make ProcessStrings less noisy"
Diffstat (limited to 'compiler/image_writer.cc')
-rw-r--r--compiler/image_writer.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/image_writer.cc b/compiler/image_writer.cc
index ba02338..d69447d 100644
--- a/compiler/image_writer.cc
+++ b/compiler/image_writer.cc
@@ -556,8 +556,10 @@ void ImageWriter::ProcessStrings() {
}
CHECK_EQ(pos, num_chars);
- LOG(INFO) << "Total # image strings=" << total_strings << " combined length="
- << num_chars << " prefix saved chars=" << prefix_saved_chars;
+ if (kIsDebugBuild || VLOG_IS_ON(compiler)) {
+ LOG(INFO) << "Total # image strings=" << total_strings << " combined length="
+ << num_chars << " prefix saved chars=" << prefix_saved_chars;
+ }
ComputeEagerResolvedStrings();
}