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
This commit is contained in:
Jaehwan Kim 2016-01-18 16:54:52 +09:00
parent 3117b8ca5a
commit a20f9b8087
1 changed files with 1 additions and 1 deletions

View 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;
}