cedric pushed a commit to branch master.

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

commit eed23765f91edb441e5d9fb01fb78c1129ea293a
Author: Cedric BAIL <ced...@osg.samsung.com>
Date:   Wed Aug 2 16:16:33 2017 -0700

    eina: failing to load a module is actually an ERR that user should see.
---
 src/lib/eina/eina_module.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eina/eina_module.c b/src/lib/eina/eina_module.c
index affaf2cec8..15b82108bf 100644
--- a/src/lib/eina/eina_module.c
+++ b/src/lib/eina/eina_module.c
@@ -324,7 +324,7 @@ EAPI Eina_Bool eina_module_load(Eina_Module *m)
      {
         struct stat st;
         if (!stat(m->file, &st))
-          WRN("could not dlopen(\"%s\", %s): %s", m->file, dlerror(),
+          ERR("could not dlopen(\"%s\", %s): %s", m->file, dlerror(),
               (flag == RTLD_NOW) ? "RTLD_NOW" : "RTLD_LAZY");
         else
           DBG("could not dlopen(\"%s\", %s): %s", m->file, dlerror(),

-- 


Reply via email to