diff options
author | Steve Block <steveblock@google.com> | 2012-01-04 20:04:51 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-05 20:28:22 +0000 |
commit | 4308417beec548c2b2c06ecec4f7f4a965b09fb2 (patch) | |
tree | ae52b2baeb944c711598c085500bd2544aa78eea /vm/native/dalvik_system_VMRuntime.cpp | |
parent | ab35b50311951feea3782151dd5422ee944685c2 (diff) | |
download | android_dalvik-4308417beec548c2b2c06ecec4f7f4a965b09fb2.tar.gz android_dalvik-4308417beec548c2b2c06ecec4f7f4a965b09fb2.tar.bz2 android_dalvik-4308417beec548c2b2c06ecec4f7f4a965b09fb2.zip |
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156801
Bug: 5449033
Change-Id: Ic558031c75b3702d90eb78bd730501ae5d3c077b
Diffstat (limited to 'vm/native/dalvik_system_VMRuntime.cpp')
-rw-r--r-- | vm/native/dalvik_system_VMRuntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/native/dalvik_system_VMRuntime.cpp b/vm/native/dalvik_system_VMRuntime.cpp index 6bd533327..72bad2971 100644 --- a/vm/native/dalvik_system_VMRuntime.cpp +++ b/vm/native/dalvik_system_VMRuntime.cpp @@ -194,7 +194,7 @@ static void Dalvik_dalvik_system_VMRuntime_setTargetSdkVersion(const u4* args, int targetSdkVersion = args[1]; if (targetSdkVersion > 0 && targetSdkVersion <= 13 /* honeycomb-mr2 */) { // TODO: running with CheckJNI should override this and force you to obey the strictest rules. - LOGI("Turning on JNI app bug workarounds for target SDK version %i...", targetSdkVersion); + ALOGI("Turning on JNI app bug workarounds for target SDK version %i...", targetSdkVersion); gDvmJni.workAroundAppJniBugs = true; } RETURN_VOID(); |