diff options
author | Steve Block <steveblock@google.com> | 2011-10-12 17:28:01 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2011-10-25 10:52:11 +0100 |
commit | 4572c8fed0ab19dc00c4c0fb42b0c34d42dca333 (patch) | |
tree | b23c11a70ce738df90a028090e87aa5c7745b6bc | |
parent | 76c7c028ba3f0eeb17b7cf4709883ace0ffc83c5 (diff) | |
download | android_hardware_invensense-4572c8fed0ab19dc00c4c0fb42b0c34d42dca333.tar.gz android_hardware_invensense-4572c8fed0ab19dc00c4c0fb42b0c34d42dca333.tar.bz2 android_hardware_invensense-4572c8fed0ab19dc00c4c0fb42b0c34d42dca333.zip |
Rename LOG() to ALOG() DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/141576
Bug: 5449033
Change-Id: I38b200310df82e0a7336edded8ba819455c9fc9b
-rw-r--r-- | mlsdk/platform/include/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlsdk/platform/include/log.h b/mlsdk/platform/include/log.h index 2c36e55..8485074 100644 --- a/mlsdk/platform/include/log.h +++ b/mlsdk/platform/include/log.h @@ -284,7 +284,7 @@ extern "C" { #ifndef MPL_LOG_PRI #ifdef ANDROID #define MPL_LOG_PRI(priority, tag, fmt, ...) \ - LOG(priority, tag, fmt, ##__VA_ARGS__) + ALOG(priority, tag, fmt, ##__VA_ARGS__) #elif defined __KERNEL__ #define MPL_LOG_PRI(priority, tag, fmt, ...) \ pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__) |