Changed the default log output from LOGD to LOGI. 89/234689/1
authorJoonbum Ko <joonbum.ko@samsung.com>
Wed, 27 May 2020 07:13:11 +0000 (16:13 +0900)
committerJoonbum Ko <joonbum.ko@samsung.com>
Wed, 27 May 2020 07:13:11 +0000 (16:13 +0900)
Change-Id: I26d2328a119dfe23523f279f9b72eab7ba9ea552
Signed-off-by: Joonbum Ko <joonbum.ko@samsung.com>
src/tpl_utils.h

index 89854a1859625c70afab27405b2d59e1dcf8a97c..26b696e1a8a01fe4c7b73879079510f53c3d84ad 100644 (file)
@@ -80,10 +80,10 @@ inline char *tpl_getenv(const char *name)
 #endif
 
 #ifdef DLOG_DEFAULT_ENABLE
-#define tpl_log_f(t, f, x...)  LOGD(FONT_GREEN t FONT_DEFAULT " " f, ##x)
-#define tpl_log_b(t, f, x...)  LOGD(FONT_BLUE t FONT_DEFAULT " " f, ##x)
-#define tpl_log_d(t, f, x...)  LOGD(FONT_MAGENTA t FONT_DEFAULT " " f, ##x)
-#define tpl_log_t(t, f, x...)  LOGD(FONT_CYAN t FONT_DEFAULT " " f, ##x)
+#define tpl_log_f(t, f, x...)  LOGI(FONT_GREEN t FONT_DEFAULT " " f, ##x)
+#define tpl_log_b(t, f, x...)  LOGI(FONT_BLUE t FONT_DEFAULT " " f, ##x)
+#define tpl_log_d(t, f, x...)  LOGI(FONT_MAGENTA t FONT_DEFAULT " " f, ##x)
+#define tpl_log_t(t, f, x...)  LOGI(FONT_CYAN t FONT_DEFAULT " " f, ##x)
 #define tpl_log_e(t, f, x...)  LOGE(FONT_RED t " " f FONT_DEFAULT, ##x)
 #define tpl_log_w(t, f, x...)  LOGW(FONT_YELLOW t " " f FONT_DEFAULT, ##x)
 #else /* DLOG_DEFAULT_ENABLE */