eina: failing to load a module is actually an ERR that user should see.

This commit is contained in:
Cedric BAIL 2017-08-02 16:16:33 -07:00
parent 48443fda8f
commit eed23765f9
1 changed files with 1 additions and 1 deletions

View File

@ -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(),