#ifndef NO_TIZEN
#include <dlog.h>
+#define LOGX(fmt, arg...) \
+ ({ do { \
+ dlog_print(DLOG_ERROR, LOG_TAG, fmt, ##arg); \
+ } while (0); })
+
#else
#include <stdio.h>
#define LOGE(fmt, args...) printf(fmt, ##args)
#define LOGD(fmt, args...) printf(fmt, ##args)
#define LOGI(fmt, args...) printf(fmt, ##args)
+#define LOGX(fmt, args...) printf(fmt, ##args)
#endif
#ifdef LOG_TAG
#define _INFO(fmt, args...) LOGI(fmt "\n", ##args)
#endif
+#ifndef _ERRX
+#define _ERRX(fmt, args...) LOGX(fmt "\n", ##args)
+#endif
+
#endif /* __LOG_H__ */