From: Cho Woong Suk Date: Wed, 25 Apr 2018 02:28:12 +0000 (+0900) Subject: change log tag from ERR to INFO for C# log X-Git-Tag: accepted/tizen/unified/20180427.062348~5^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F64%2F177064%2F1;p=platform%2Fcore%2Fdotnet%2Flauncher.git change log tag from ERR to INFO for C# log Change-Id: I99f14b4972d9c5ed815a62a0e9dd7ce0d7386751 --- diff --git a/NativeLauncher/inc/log.h b/NativeLauncher/inc/log.h index 3315f8e..20f7d2f 100644 --- a/NativeLauncher/inc/log.h +++ b/NativeLauncher/inc/log.h @@ -21,7 +21,7 @@ #include #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__ */ diff --git a/NativeLauncher/util/utils.cc b/NativeLauncher/util/utils.cc index ce01795..3d14f00 100644 --- a/NativeLauncher/util/utils.cc +++ b/NativeLauncher/util/utils.cc @@ -339,7 +339,7 @@ static void *stdlog(void*) buf[readSize] = 0; - _ERRX("%s", buf); + _LOGX("%s", buf); } close(pfd[0]);