From 8a2c9acb0b0dbfda78ebcbd5f8b4f50fe57c7556 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 21 Aug 2012 12:08:48 +0000 Subject: [PATCH] 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 --- legacy/eobj/src/lib/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eobj/src/lib/eo.c b/legacy/eobj/src/lib/eo.c index 5b0655c40b..2eae61ab06 100644 --- a/legacy/eobj/src/lib/eo.c +++ b/legacy/eobj/src/lib/eo.c @@ -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;