diff options
author | Michal Pawluk <m.pawluk@samsung.com> | 2016-03-10 05:38:41 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.vlan103.tizen.org> | 2016-03-10 05:38:41 -0800 |
commit | 0383dd2c845566a1bb83c1e798cf9fa69643d39c (patch) | |
tree | 6b819504ae1c5204f5995d5434fbf21f0cfc6b9c | |
parent | c22b48cfdee1d06444e2f9acbbbe7f86d96352bb (diff) | |
parent | 51ef32b15b4ab3660ae79588bc09aad28a021ce8 (diff) | |
download | indicator-win-0383dd2c845566a1bb83c1e798cf9fa69643d39c.tar.gz indicator-win-0383dd2c845566a1bb83c1e798cf9fa69643d39c.tar.bz2 indicator-win-0383dd2c845566a1bb83c1e798cf9fa69643d39c.zip |
Merge "Internal *LOG macros replaced with dlog_print function." into sandbox/stanluk/tizen_sdk
-rwxr-xr-x | inc/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,15 +25,15 @@ #define LOG_TAG "INDICATOR" #if !defined(_D) -#define _D(fmt, arg...) LOGD(fmt"\n", ##arg) +#define _D(fmt, arg...) dlog_print(DLOG_DEBUG, LOG_TAG, fmt"\n", ##arg) #endif #if !defined(_W) -#define _W(fmt, arg...) LOGW(fmt"\n", ##arg) +#define _W(fmt, arg...) dlog_print(DLOG_WARN, LOG_TAG, fmt"\n", ##arg) #endif #if !defined(_E) -#define _E(fmt, arg...) LOGE(fmt"\n", ##arg) +#define _E(fmt, arg...) dlog_print(DLOG_ERROR, LOG_TAG, fmt"\n", ##arg) #endif #define retvm_if(expr, val, fmt, arg...) do { \ |