raster pushed a commit to branch master.

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

commit 0f4d1d6186bf53d03971a09eab2b286e36f487da
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Thu Jun 25 13:15:31 2015 +0900

    eina module - it is not an error to ERR log to not load a .so
    
    it is not an error. eina_module may be used on files that don't exist
    and the caller may handle that as a "does not exist" error. it is not
    good to go spewing out errors for this. it's debug at best.
    
    @fix
---
 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 9bc73b6..7c421e3 100644
--- a/src/lib/eina/eina_module.c
+++ b/src/lib/eina/eina_module.c
@@ -330,7 +330,7 @@ EAPI Eina_Bool eina_module_load(Eina_Module *m)
 
    if (!dl_handle)
      {
-        ERR("could not dlopen(\"%s\", %s): %s", m->file, dlerror(),
+        DBG("could not dlopen(\"%s\", %s): %s", m->file, dlerror(),
             (flag == RTLD_NOW) ? "RTLD_NOW" : "RTLD_LAZY");
         return EINA_FALSE;
      }

-- 


Reply via email to