diff options
Diffstat (limited to 'compiler/image_writer.cc')
-rw-r--r-- | compiler/image_writer.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/image_writer.cc b/compiler/image_writer.cc index 8c7d611d85..dfebd3e628 100644 --- a/compiler/image_writer.cc +++ b/compiler/image_writer.cc @@ -561,8 +561,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(); } |