From: Jaehwan Kim Date: Mon, 18 Jan 2016 07:54:52 +0000 (+0900) Subject: embryo: change the log catagory of printf in embryo X-Git-Tag: accepted/tizen/mobile/20160129.083520^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F02%2F58202%2F1;p=platform%2Fupstream%2Fefl.git 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 --- 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; }