change log tag from ERR to INFO for C# log 64/177064/1
authorCho Woong Suk <ws77.cho@samsung.com>
Wed, 25 Apr 2018 02:28:12 +0000 (11:28 +0900)
committerwoongsuk cho <ws77.cho@samsung.com>
Wed, 25 Apr 2018 05:22:46 +0000 (05:22 +0000)
Change-Id: I99f14b4972d9c5ed815a62a0e9dd7ce0d7386751

NativeLauncher/inc/log.h
NativeLauncher/util/utils.cc

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__ */
index ce01795..3d14f00 100644 (file)
@@ -339,7 +339,7 @@ static void *stdlog(void*)
 
         buf[readSize] = 0;
 
-        _ERRX("%s", buf);
+        _LOGX("%s", buf);
     }
 
        close(pfd[0]);