summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Pawluk <m.pawluk@samsung.com>2016-03-10 05:38:41 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2016-03-10 05:38:41 -0800
commit0383dd2c845566a1bb83c1e798cf9fa69643d39c (patch)
tree6b819504ae1c5204f5995d5434fbf21f0cfc6b9c
parentc22b48cfdee1d06444e2f9acbbbe7f86d96352bb (diff)
parent51ef32b15b4ab3660ae79588bc09aad28a021ce8 (diff)
downloadindicator-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-xinc/log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/log.h b/inc/log.h
index 0745ded..a2bec6e 100755
--- a/inc/log.h
+++ b/inc/log.h
@@ -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 { \