From d723adf1eef66d8ade9b1ebfda758605078e6e02 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Thu, 29 Aug 2019 14:34:43 +0900 Subject: [PATCH] Edje: ease the warning level. We already take care the case, it's not so serious as to error. --- src/lib/edje/edje_textblock_styles.c | 4 ++-- 1 file 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; }