embryo: change the log catagory of printf in embryo 02/58202/1 accepted/tizen/mobile/20160129.083520 accepted/tizen/tv/20160129.083541 accepted/tizen/wearable/20160129.083551 submit/tizen/20160129.003334
authorJaehwan Kim <jae.hwan.kim@samsung.com>
Mon, 18 Jan 2016 07:54:52 +0000 (16:54 +0900)
committerJaehwan Kim <jae.hwan.kim@samsung.com>
Thu, 28 Jan 2016 08:53:27 +0000 (17:53 +0900)
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

index e428179..649bd49 100644 (file)
@@ -445,7 +445,7 @@ _embryo_str_printf(Embryo_Program *ep, Embryo_Cell *params)
 
    _str_snprintf(ep, s1, s2, max_len, pnum, &params[2]);
 
-   DBG("%s", s2);
+   INF("%s", s2);
 
    return o;
 }