summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHermet Park <hermetpark@gmail.com>2019-08-29 14:34:43 +0900
committerHermet Park <hermetpark@gmail.com>2019-08-29 14:34:43 +0900
commitd723adf1eef66d8ade9b1ebfda758605078e6e02 (patch)
tree7ade50900264b5410e868b3b3c549db835494112
parente2663ba8f38c80dd583abb3ecc6ed8e2ab7c1a45 (diff)
downloadefl-d723adf1eef66d8ade9b1ebfda758605078e6e02.tar.gz
Edje: ease the warning level.
We already take care the case, it's not so serious as to error.
-rw-r--r--src/lib/edje/edje_textblock_styles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/edje/edje_textblock_styles.c b/src/lib/edje/edje_textblock_styles.c
index 4ceb3ae152..09a033986f 100644
--- a/src/lib/edje/edje_textblock_styles.c
+++ b/src/lib/edje/edje_textblock_styles.c
@@ -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;
}