Initialize Tizen 2.3
[adaptation/devices/nfc-plugin-nxp.git] / src / cutils / log.h
1
2 #include <dlog.h>
3
4 #define LOG_COLOR_RED           "\033[0;31m"
5 #define LOG_COLOR_GREEN         "\033[0;32m"
6 #define LOG_COLOR_BROWN         "\033[0;33m"
7 #define LOG_COLOR_BLUE          "\033[0;34m"
8 #define LOG_COLOR_PURPLE        "\033[0;35m"
9 #define LOG_COLOR_CYAN          "\033[0;36m"
10 #define LOG_COLOR_LIGHTBLUE "\033[0;37m"
11 #define LOG_COLOR_END           "\033[0;m"
12
13 #define LOGE(format,args...) \
14 do {\
15         LOGD(LOG_COLOR_BROWN""format""LOG_COLOR_END, ##args);\
16 }while(0);
17