summaryrefslogtreecommitdiffstats
path: root/vm/RawDexFile.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:22:13 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:29:27 +0000
commit062bf509a77fce9dfcb7e7b2e401cf2a124d83d5 (patch)
tree6015cb53c42eb9ae2d13811da33381701a7c353a /vm/RawDexFile.cpp
parent26f957278b34144a3f90989ccddb0102fc1fdd62 (diff)
downloadandroid_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.tar.gz
android_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.tar.bz2
android_dalvik-062bf509a77fce9dfcb7e7b2e401cf2a124d83d5.zip
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: Ic663376d1ad6a6cb14bf81405ad9afd247cf2f60
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 53a84240a..1dc12c932 100644
--- a/vm/RawDexFile.cpp
+++ b/vm/RawDexFile.cpp
@@ -199,7 +199,7 @@ int dvmRawDexFileOpen(const char* fileName, const char* odexOutputName,
}
endWhen = dvmGetRelativeTimeUsec();
- LOGD("DEX prep '%s': copy in %dms, rewrite %dms",
+ ALOGD("DEX prep '%s': copy in %dms, rewrite %dms",
fileName,
(int) (copyWhen - startWhen) / 1000,
(int) (endWhen - copyWhen) / 1000);
@@ -251,7 +251,7 @@ int dvmRawDexFileOpenArray(u1* pBytes, u4 length, RawDexFile** ppRawDexFile)
DvmDex* pDvmDex = NULL;
if (!dvmPrepareDexInMemory(pBytes, length, &pDvmDex)) {
- LOGD("Unable to open raw DEX from array");
+ ALOGD("Unable to open raw DEX from array");
return -1;
}
assert(pDvmDex != NULL);