eina module - it is not an error to ERR log to not load a .so
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 25 Jun 2015 04:15:31 +0000 (13:15 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 25 Jun 2015 04:15:31 +0000 (13:15 +0900)
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

index 9bc73b6..7c421e3 100644 (file)
@@ -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;
      }