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
This commit is contained in:
Carsten Haitzler 2015-06-25 13:15:31 +09:00
parent ddb3a60518
commit 0f4d1d6186
1 changed files with 1 additions and 1 deletions

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