diff options
-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__) |