diff options
| -rw-r--r-- | runtime/native/dalvik_system_DexFile.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/runtime/native/dalvik_system_DexFile.cc b/runtime/native/dalvik_system_DexFile.cc index af09a1c57d..55a56d6c7a 100644 --- a/runtime/native/dalvik_system_DexFile.cc +++ b/runtime/native/dalvik_system_DexFile.cc @@ -242,9 +242,16 @@ static jboolean DexFile_isDexOptNeeded(JNIEnv* env, jclass, jstring javaFilename &error_msg)) { if (kVerboseLogging) { LOG(INFO) << "DexFile_isDexOptNeeded precompiled file " << odex_filename - << " is up-to-date checksum compared to " << filename.c_str(); + << " has an up-to-date checksum compared to " << filename.c_str(); } return JNI_FALSE; + } else { + if (kVerboseLogging) { + LOG(INFO) << "DexFile_isDexOptNeeded found precompiled file " << odex_filename + << " with an out-of-date checksum compared to " << filename.c_str() + << ": " << error_msg; + } + error_msg.clear(); } } } |