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 --- libdex/DexDataMap.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libdex/DexDataMap.cpp') diff --git a/libdex/DexDataMap.cpp b/libdex/DexDataMap.cpp index 3553c367d..8405e8c9f 100644 --- a/libdex/DexDataMap.cpp +++ b/libdex/DexDataMap.cpp @@ -77,7 +77,7 @@ void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) { if ((map->count != 0) && (map->offsets[map->count - 1] >= offset)) { - LOGE("Out-of-order data map offset: %#x then %#x", + ALOGE("Out-of-order data map offset: %#x then %#x", map->offsets[map->count - 1], offset); return; } @@ -130,10 +130,10 @@ bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) { } if (found < 0) { - LOGE("No data map entry found @ %#x; expected %x", + ALOGE("No data map entry found @ %#x; expected %x", offset, type); } else { - LOGE("Unexpected data map entry @ %#x: expected %x, found %x", + ALOGE("Unexpected data map entry @ %#x: expected %x, found %x", offset, type, found); } -- cgit v1.2.3