diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2015-06-25 13:15:31 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2015-06-25 13:15:31 +0900 |
commit | 0f4d1d6186bf53d03971a09eab2b286e36f487da (patch) | |
tree | b6367be65ad06fa163488f546017cd5a3445796f | |
parent | ddb3a605182dd573721c3a946a0e7981182d7047 (diff) |
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
-rw-r--r-- | src/lib/eina/eina_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eina/eina_module.c b/src/lib/eina/eina_module.c index 9bc73b65ff..7c421e3d9c 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) | |||
330 | 330 | ||
331 | if (!dl_handle) | 331 | if (!dl_handle) |
332 | { | 332 | { |
333 | ERR("could not dlopen(\"%s\", %s): %s", m->file, dlerror(), | 333 | DBG("could not dlopen(\"%s\", %s): %s", m->file, dlerror(), |
334 | (flag == RTLD_NOW) ? "RTLD_NOW" : "RTLD_LAZY"); | 334 | (flag == RTLD_NOW) ? "RTLD_NOW" : "RTLD_LAZY"); |
335 | return EINA_FALSE; | 335 | return EINA_FALSE; |
336 | } | 336 | } |