summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Brian Carlstrom <bdc@google.com> 2014-08-25 18:12:06 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-08-25 18:12:06 +0000
commit072a8bf6883b6f6f178200ff9f03aa8d56a83c40 (patch)
treef174f4e765c2b1f4b77f8fca472f891e7f86075f
parente25826e28ea65d9c1aa23f84788a091c677b20c7 (diff)
parentb6cabc1345ec307559a6e85141fb69b7caa9413c (diff)
Merge "Reduce log spam by changing a LOG(INFO) to VLOG(startup)"
-rw-r--r--runtime/gc/space/image_space.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc
index 0139eccef0..416c26704e 100644
--- a/runtime/gc/space/image_space.cc
+++ b/runtime/gc/space/image_space.cc
@@ -362,8 +362,8 @@ ImageSpace* ImageSpace::Create(const char* image_location,
// we leave Create.
ScopedFlock image_lock;
image_lock.Init(image_filename->c_str(), error_msg);
- LOG(INFO) << "Using image file " << image_filename->c_str() << " for image location "
- << image_location;
+ VLOG(startup) << "Using image file " << image_filename->c_str() << " for image location "
+ << image_location;
// If we are in /system we can assume the image is good. We can also
// assume this if we are using a relocated image (i.e. image checksum
// matches) since this is only different by the offset. We need this to