edje:echo() logs to the lua domain, at the debug level.

It's for debugging lua scripts.


SVN revision: 65363
This commit is contained in:
David Walter Seikel 2011-11-18 05:53:44 +00:00
parent be730ca826
commit 7a20a441dd
1 changed files with 1 additions and 1 deletions

View File

@ -670,7 +670,7 @@ static int
_elua_echo(lua_State *L) // Stack usage [-0, +0, vm]
{
const char *string = luaL_checkstring(L, 1);
printf("%s\n", string);
LD("%s\n", string);
return 0;
}