summaryrefslogtreecommitdiffstats
path: root/vm/JarFile.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/JarFile.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/JarFile.cpp')
-rw-r--r--vm/JarFile.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm/JarFile.cpp b/vm/JarFile.cpp
index a4affb83c..a3989960e 100644
--- a/vm/JarFile.cpp
+++ b/vm/JarFile.cpp
@@ -150,7 +150,7 @@ DexCacheStatus dvmDexCacheStatus(const char *fileName)
*/
fd = openAlternateSuffix(fileName, "odex", O_RDONLY, &cachedName);
if (fd < 0) {
- LOGI("Zip is good, but no %s inside, and no .odex "
+ ALOGI("Zip is good, but no %s inside, and no .odex "
"file in the same directory", kDexInJarName);
result = DEX_CACHE_BAD_ARCHIVE;
goto bail;
@@ -269,7 +269,7 @@ tryArchive:
dexGetZipEntryCrc32(&archive, entry),
isBootstrap, &newFile, /*createIfMissing=*/true);
if (fd < 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;
}
@@ -316,7 +316,7 @@ tryArchive:
(int) (endWhen - extractWhen) / 1000);
}
} else {
- LOGI("Zip is good, but no %s inside, and no valid .odex "
+ ALOGI("Zip is good, but no %s inside, and no valid .odex "
"file in the same directory", kDexInJarName);
goto bail;
}
@@ -327,7 +327,7 @@ tryArchive:
* doesn't have to be seeked anywhere in particular.
*/
if (dvmDexFileOpenFromFd(fd, &pDvmDex) != 0) {
- LOGI("Unable to map %s in %s", kDexInJarName, fileName);
+ ALOGI("Unable to map %s in %s", kDexInJarName, fileName);
goto bail;
}