From c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 6 Jan 2012 19:16:58 +0000 Subject: Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE See https://android-git.corp.google.com/g/#/c/157220 Also fix an occurrence of LOGW missed in an earlier change. Bug: 5449033 Change-Id: I2e3b23839e6dcd09015d6402280e9300c75e3406 --- vm/reflect/Proxy.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vm/reflect/Proxy.cpp') diff --git a/vm/reflect/Proxy.cpp b/vm/reflect/Proxy.cpp index 94a87c286..02d43eb1d 100644 --- a/vm/reflect/Proxy.cpp +++ b/vm/reflect/Proxy.cpp @@ -200,7 +200,7 @@ ClassObject* dvmGenerateProxyClass(StringObject* str, ArrayObject* interfaces, * with a duplicate name. */ if (!dvmAddClassToHash(newClass)) { - LOGE("ERROR: attempted to generate %s more than once", + ALOGE("ERROR: attempted to generate %s more than once", newClass->descriptor); goto bail; } @@ -492,7 +492,7 @@ static int copyWithoutDuplicates(Method** allMethods, int allCount, gDvm.classJavaLangClassArray, commonCount, ALLOC_DEFAULT); if (throwArray == NULL) { - LOGE("common-throw array alloc failed"); + ALOGE("common-throw array alloc failed"); return -1; } @@ -893,7 +893,7 @@ static void proxyInvoker(const u4* args, JValue* pResult, invoke = dvmFindVirtualMethodHierByDescriptor(handler->clazz, "invoke", "(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;"); if (invoke == NULL) { - LOGE("Unable to find invoke()"); + ALOGE("Unable to find invoke()"); dvmAbort(); } @@ -925,7 +925,7 @@ static void proxyInvoker(const u4* args, JValue* pResult, returnType = dvmGetBoxedReturnType(method); if (returnType == NULL) { char* desc = dexProtoCopyMethodDescriptor(&method->prototype); - LOGE("Could not determine return type for '%s'", desc); + ALOGE("Could not determine return type for '%s'", desc); free(desc); assert(dvmCheckException(self)); goto bail; -- cgit v1.2.3