diff options
| author | 2014-08-25 18:12:06 +0000 | |
|---|---|---|
| committer | 2014-08-25 18:12:06 +0000 | |
| commit | 072a8bf6883b6f6f178200ff9f03aa8d56a83c40 (patch) | |
| tree | f174f4e765c2b1f4b77f8fca472f891e7f86075f | |
| parent | e25826e28ea65d9c1aa23f84788a091c677b20c7 (diff) | |
| parent | b6cabc1345ec307559a6e85141fb69b7caa9413c (diff) | |
Merge "Reduce log spam by changing a LOG(INFO) to VLOG(startup)"
| -rw-r--r-- | runtime/gc/space/image_space.cc | 4 |
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 |