hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d723adf1eef66d8ade9b1ebfda758605078e6e02

commit d723adf1eef66d8ade9b1ebfda758605078e6e02
Author: Hermet Park <hermetp...@gmail.com>
Date:   Thu Aug 29 14:34:43 2019 +0900

    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;
      }
 

-- 


Reply via email to