diff options
author | Steve Block <steveblock@google.com> | 2011-12-20 16:22:13 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-03 22:29:27 +0000 |
commit | 062bf509a77fce9dfcb7e7b2e401cf2a124d83d5 (patch) | |
tree | 6015cb53c42eb9ae2d13811da33381701a7c353a /vm/mterp/out/InterpC-x86.cpp | |
parent | 26f957278b34144a3f90989ccddb0102fc1fdd62 (diff) | |
download | android_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/mterp/out/InterpC-x86.cpp')
-rw-r--r-- | vm/mterp/out/InterpC-x86.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/mterp/out/InterpC-x86.cpp b/vm/mterp/out/InterpC-x86.cpp index a4931c033..f300e8ce3 100644 --- a/vm/mterp/out/InterpC-x86.cpp +++ b/vm/mterp/out/InterpC-x86.cpp @@ -2181,7 +2181,7 @@ GOTO_TARGET(exceptionThrown) if (catchRelPc < 0) { /* falling through to JNI code or off the bottom of the stack */ #if DVM_SHOW_EXCEPTION >= 2 - LOGD("Exception %s from %s:%d not caught locally", + ALOGD("Exception %s from %s:%d not caught locally", exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod), dvmLineNumFromPC(curMethod, pc - curMethod->insns)); #endif @@ -2193,7 +2193,7 @@ GOTO_TARGET(exceptionThrown) #if DVM_SHOW_EXCEPTION >= 3 { const Method* catchMethod = SAVEAREA_FROM_FP(fp)->method; - LOGD("Exception %s thrown from %s:%d to %s:%d", + ALOGD("Exception %s thrown from %s:%d to %s:%d", exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod), dvmLineNumFromPC(curMethod, pc - curMethod->insns), dvmGetMethodSourceFile(catchMethod), @@ -2351,7 +2351,7 @@ GOTO_TARGET(invokeMethod, bool methodCallRange, const Method* _methodToCall, assert(dvmCheckException(self)); GOTO_exceptionThrown(); } - //LOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p", + //ALOGD("+++ fp=%p newFp=%p newSave=%p bottom=%p", // fp, newFp, newSaveArea, bottom); } |