Edje: ease the warning level.

We already take care the case, it's not so serious as to error.
This commit is contained in:
Hermet Park 2019-08-29 14:34:43 +09:00
parent e2663ba8f3
commit d723adf1ee
1 changed files with 2 additions and 2 deletions

View File

@ -146,14 +146,14 @@ _edje_textblock_style_update(Edje *ed, Edje_Style *stl)
/* this check is only here to catch misuse of this function */
if (stl->readonly)
{
ERR("style_update() shouldn't be called for readonly style. performance regression : %s", stl->name);
WRN("style_update() shouldn't be called for readonly style. performance regression : %s", stl->name);
return;
}
/* this check is only here to catch misuse of this function */
if (stl->cache)
{
ERR("style_update() shouldn't be called for cached style. performance regression : %s", stl->name);
WRN("style_update() shouldn't be called for cached style. performance regression : %s", stl->name);
return;
}