summaryrefslogtreecommitdiffstats
path: root/libnativehelper
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-12 17:24:48 +0100
committerSteve Block <steveblock@google.com>2011-10-25 16:28:17 +0100
commit1663a6c12fdf4732d7ea0a0406af6085b3c408e4 (patch)
treefbd778f88a7a4b124b03989c05a29f42efcce975 /libnativehelper
parentb78eab06552c503106eec5dc832a1eb5b1e0205a (diff)
downloadandroid_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.tar.gz
android_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.tar.bz2
android_dalvik-1663a6c12fdf4732d7ea0a0406af6085b3c408e4.zip
Rename (IF_)LOG() to (IF_)ALOG() DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/141576 Bug: 5449033 Change-Id: Ie3bc0d5436218ea05f98cb0373ecf5924f78db05
Diffstat (limited to 'libnativehelper')
-rw-r--r--libnativehelper/include/nativehelper/JNIHelp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativehelper/include/nativehelper/JNIHelp.h b/libnativehelper/include/nativehelper/JNIHelp.h
index aa98c2c95..f5666f2a3 100644
--- a/libnativehelper/include/nativehelper/JNIHelp.h
+++ b/libnativehelper/include/nativehelper/JNIHelp.h
@@ -167,7 +167,7 @@ inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowab
* from the JNI environment, if any.
*/
#define LOG_EX(env, priority, tag, ...) \
- IF_LOG(priority, tag) jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)
+ IF_ALOG(priority, tag) jniLogException(env, ANDROID_##priority, tag, ##__VA_ARGS__)
#define LOGV_EX(env, ...) LOG_EX(env, LOG_VERBOSE, LOG_TAG, ##__VA_ARGS__)
#define LOGD_EX(env, ...) LOG_EX(env, LOG_DEBUG, LOG_TAG, ##__VA_ARGS__)
#define LOGI_EX(env, ...) LOG_EX(env, LOG_INFO, LOG_TAG, ##__VA_ARGS__)