projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3117b8c
)
embryo: change the log catagory of printf in embryo
author
Jaehwan Kim
<jae.hwan.kim@samsung.com>
Mon, 18 Jan 2016 07:54:52 +0000
(16:54 +0900)
committer
Jaehwan Kim
<jae.hwan.kim@samsung.com>
Mon, 18 Jan 2016 07:57:58 +0000
(16:57 +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
src/lib/embryo/embryo_str.c
patch
|
blob
|
history
diff --git
a/src/lib/embryo/embryo_str.c
b/src/lib/embryo/embryo_str.c
index
e428179
..
649bd49
100644
(file)
--- 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;
}