From: Alex Light Date: Thu, 21 Aug 2014 16:45:00 +0000 (-0700) Subject: Reduce log spam by changing a LOG(INFO) to VLOG(startup) X-Git-Tag: android-x86-7.1-r1~889^2~3254^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b6cabc1345ec307559a6e85141fb69b7caa9413c;p=android-x86%2Fart.git Reduce log spam by changing a LOG(INFO) to VLOG(startup) Bug: 17166556 Change-Id: I9975ba07ad8f119a6e367e2770a60040a462149b --- diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index 0139eccef..416c26704 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