From c12f3fb46bc5ed08732775e5d51380cef167f63e Mon Sep 17 00:00:00 2001 From: wangliu Date: Fri, 8 Jun 2018 17:46:33 +0800 Subject: [PATCH] modify andorid log printer --- CMakeLists.txt | 6 +++--- src/common/log.h | 18 ++++++++++++++---- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa4895227c..02e4ebb3c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0) project(paddle-mobile) -option(DEBUGING "enable debug mode" ON) +option(DEBUGING "enable debug mode" OFF) option(USE_OPENMP "openmp support" OFF) option(USE_EXCEPTION "use std exception" OFF) @@ -130,8 +130,8 @@ endif() add_library(paddle-mobile SHARED ${PADDLE_MOBILE_CC} ${PADDLE_MOBILE_H}) -#if(DEBUGING) +if(DEBUGING) add_subdirectory(test) -#endif() +endif() diff --git a/src/common/log.h b/src/common/log.h index 0be2bb79fc..b1210fe687 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -32,18 +32,23 @@ namespace paddle_mobile { extern const char *ANDROID_LOG_TAG; -#define LOGI(...) \ +#define ANDROIDLOGI(...) \ __android_log_print(ANDROID_LOG_INFO, ANDROID_LOG_TAG, __VA_ARGS__); \ printf(__VA_ARGS__) -#define LOGW(...) \ +#define ANDROIDLOGW(...) \ __android_log_print(ANDROID_LOG_WARNING, ANDROID_LOG_TAG, __VA_ARGS__); \ printf(__VA_ARGS__) -#define LOGD(...) \ +#define ANDROIDLOGD(...) \ __android_log_print(ANDROID_LOG_DEBUG, ANDROID_LOG_TAG, __VA_ARGS__); \ printf(__VA_ARGS__) -#define LOGE(...) \ +#define ANDROIDLOGE(...) \ __android_log_print(ANDROID_LOG_ERROR, ANDROID_LOG_TAG, __VA_ARGS__); \ printf(__VA_ARGS__) +#else +#define ANDROIDLOGI(...) +#define ANDROIDLOGW(...) +#define ANDROIDLOGD(...) +#define ANDROIDLOGE(...) #endif @@ -144,6 +149,11 @@ struct ToLog { #else +#define ANDROIDLOGI(...) +#define ANDROIDLOGW(...) +#define ANDROIDLOGD(...) +#define ANDROIDLOGE(...) + enum LogLevel { kNO_LOG, kLOG_ERROR, -- GitLab