aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-05 23:21:27 +0000
committerSteve Block <steveblock@google.com>2012-01-06 10:04:42 +0000
commit7f18b364f0a76f13e741b315be30cb95b9005c6e (patch)
treed0b6ec02520fd74e5e022e440f3a70fb610ba026
parent292b1c28091b32a418eb44dcdef157a7b808abd4 (diff)
downloadlibnativehelper-7f18b364f0a76f13e741b315be30cb95b9005c6e.tar.gz
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/157065 Bug: 5449033 Change-Id: Ia5d301248024df26c2a29dabdfe738e39ec87c82
-rw-r--r--JNIHelp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/JNIHelp.cpp b/JNIHelp.cpp
index a9a1167..d4e4ff3 100644
--- a/JNIHelp.cpp
+++ b/JNIHelp.cpp
@@ -213,7 +213,7 @@ extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const cha
if (exception.get() != NULL) {
char* text = getExceptionSummary(env, exception.get());
- LOGW("Discarding pending exception (%s) to throw %s", text, className);
+ ALOGW("Discarding pending exception (%s) to throw %s", text, className);
free(text);
}
}