From eed23765f91edb441e5d9fb01fb78c1129ea293a Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Wed, 2 Aug 2017 16:16:33 -0700 Subject: [PATCH] eina: failing to load a module is actually an ERR that user should see. --- 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 affaf2cec8..15b82108bf 100644 --- a/src/lib/eina/eina_module.c +++ b/src/lib/eina/eina_module.c @@ -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(),