From 0f4d1d6186bf53d03971a09eab2b286e36f487da Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 25 Jun 2015 13:15:31 +0900 Subject: [PATCH] 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; } -- 2.7.4