diff options
author | Jaehwan Kim <jae.hwan.kim@samsung.com> | 2016-01-18 16:54:52 +0900 |
---|---|---|
committer | Jaehwan Kim <jae.hwan.kim@samsung.com> | 2016-01-18 16:57:58 +0900 |
commit | a20f9b8087b85728cb03a2bcd3c6174fc05aa20b (patch) | |
tree | a39fed411eac5a3f9ee86482bf36b7d3558d511e /src/lib/embryo/embryo_str.c | |
parent | 3117b8ca5aa7d963d8d7a9d856bc0e9fad96e9d0 (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | src/lib/embryo/embryo_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/embryo/embryo_str.c b/src/lib/embryo/embryo_str.c index e428179074..649bd49f8f 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) | |||
445 | 445 | ||
446 | _str_snprintf(ep, s1, s2, max_len, pnum, ¶ms[2]); | 446 | _str_snprintf(ep, s1, s2, max_len, pnum, ¶ms[2]); |
447 | 447 | ||
448 | DBG("%s", s2); | 448 | INF("%s", s2); |
449 | 449 | ||
450 | return o; | 450 | return o; |
451 | } | 451 | } |