Eo: WRN -> ERR. We do (in EFL) logging wrong.

Warnings should be on by default and not abused.
Now I had to change the WRN -> ERR because JackDanielZ is a crybaby,
and the issue described above.

SVN revision: 75504
This commit is contained in:
Tom Hacohen 2012-08-21 12:08:48 +00:00
parent 25255b9409
commit 8a2c9acb0b
1 changed files with 1 additions and 1 deletions

View File

@ -1286,7 +1286,7 @@ _eo_unref(Eo *obj)
/* If for some reason it's not empty, clear it. */
while (obj->xrefs)
{
WRN("obj->xrefs is not empty, possibly a bug, please report. - An error will be reported for each xref in the stack.");
ERR("obj->xrefs is not empty, possibly a bug, please report. - An error will be reported for each xref in the stack.");
Eina_Inlist *nitr = obj->xrefs->next;
free(EINA_INLIST_CONTAINER_GET(obj->xrefs, Eo_Xref_Node));
obj->xrefs = nitr;