summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortasn <tasn>2012-08-21 12:08:48 +0000
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>2012-08-21 12:08:48 +0000
commitaf626f98542866102d6b139cf28d7c5e2bcd11db (patch)
treee2d13c426aced1722f1cd06a4c8955eeafd70b86
parent245ff54265f70874c501b77f09ed756169a3befd (diff)
downloadeobj-af626f98542866102d6b139cf28d7c5e2bcd11db.tar.gz
eobj-af626f98542866102d6b139cf28d7c5e2bcd11db.tar.bz2
eobj-af626f98542866102d6b139cf28d7c5e2bcd11db.zip
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. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/PROTO/eobj@75504 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33
-rw-r--r--src/lib/eo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eo.c b/src/lib/eo.c
index 5b0655c..2eae61a 100644
--- a/src/lib/eo.c
+++ b/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;