summaryrefslogtreecommitdiffstats
path: root/vm/RawDexFile.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-04 20:04:51 +0000
committerSteve Block <steveblock@google.com>2012-01-05 20:28:22 +0000
commit4308417beec548c2b2c06ecec4f7f4a965b09fb2 (patch)
treeae52b2baeb944c711598c085500bd2544aa78eea /vm/RawDexFile.cpp
parentab35b50311951feea3782151dd5422ee944685c2 (diff)
downloadandroid_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/RawDexFile.cpp')
-rw-r--r--vm/RawDexFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/RawDexFile.cpp b/vm/RawDexFile.cpp
index 1dc12c932..d8df65507 100644
--- a/vm/RawDexFile.cpp
+++ b/vm/RawDexFile.cpp
@@ -162,7 +162,7 @@ int dvmRawDexFileOpen(const char* fileName, const char* odexOutputName,
adler32, isBootstrap, &newFile, /*createIfMissing=*/true);
if (optFd < 0) {
- LOGI("Unable to open or create cache for %s (%s)",
+ ALOGI("Unable to open or create cache for %s (%s)",
fileName, cachedName);
goto bail;
}
@@ -210,7 +210,7 @@ int dvmRawDexFileOpen(const char* fileName, const char* odexOutputName,
* doesn't have to be seeked anywhere in particular.
*/
if (dvmDexFileOpenFromFd(optFd, &pDvmDex) != 0) {
- LOGI("Unable to map cached %s", fileName);
+ ALOGI("Unable to map cached %s", fileName);
goto bail;
}