From 864343847b63c5055057df12645b5815bfb8c864 Mon Sep 17 00:00:00 2001 From: Jaehwan Kim Date: Mon, 18 Jan 2016 16:54:52 +0900 Subject: [PATCH] embryo: change the log catagory of printf in embryo If the catagory is DBG, we should rebuild efl to print the message by using printf in edc. So change it to use it more convenient. @fix Change-Id: Ieb5038ccd76a0150792d786fe76dc9bb9d3db7f0 --- src/lib/embryo/embryo_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/embryo/embryo_str.c b/src/lib/embryo/embryo_str.c index e428179..649bd49 100644 --- a/src/lib/embryo/embryo_str.c +++ b/src/lib/embryo/embryo_str.c @@ -445,7 +445,7 @@ _embryo_str_printf(Embryo_Program *ep, Embryo_Cell *params) _str_snprintf(ep, s1, s2, max_len, pnum, ¶ms[2]); - DBG("%s", s2); + INF("%s", s2); return o; } -- 2.7.4