edje: better debugging message when triggering infinite program loop.

NOTE: one day we should really go over all edje error message and
make them all meaningfull...



SVN revision: 69787
This commit is contained in:
Cedric BAIL 2012-03-30 09:22:12 +00:00
parent 3c0317ceff
commit 4eac10ecdc
1 changed files with 2 additions and 2 deletions

View File

@ -479,8 +479,8 @@ _edje_program_run(Edje *ed, Edje_Program *pr, Eina_Bool force, const char *ssig,
}
if ((recursions >= 64) || (recursion_limit))
{
ERR("Programs recursing up to recursion limit of %i. Disabled.",
64);
ERR("Programs recursing up to recursion limit of %i in '%s' with '%s', '%s' from '%s', '%s'. Disabled.",
64, pr->name, ssig, ssrc, ed->path, ed->group);
recursion_limit = 1;
return;
}