change log tag from ERR to INFO for C# log
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / log.h
index 3315f8e..20f7d2f 100644 (file)
@@ -21,7 +21,7 @@
 #include <dlog.h>
 #define LOGX(fmt, arg...) \
        ({ do { \
-               dlog_print(DLOG_ERROR, LOG_TAG, fmt, ##arg); \
+               dlog_print(DLOG_INFO, LOG_TAG, fmt, ##arg); \
        } while (0); })
 
 #else
@@ -49,8 +49,8 @@
 #define _INFO(fmt, args...) LOGI(fmt "\n", ##args)
 #endif
 
-#ifndef _ERRX
-#define _ERRX(fmt, args...) LOGX(fmt "\n", ##args)
+#ifndef _LOGX
+#define _LOGX(fmt, args...) LOGX(fmt "\n", ##args)
 #endif
 
 #endif /* __LOG_H__ */