eina: change module init error message to an info message

a module deciding to return false is a valid non-error case for many modules.
the module can print an error if an error occurs
This commit is contained in:
Mike Blumenkrantz 2015-05-22 13:20:56 -04:00
parent a7dea04b26
commit e5eed1b7c3
1 changed files with 6 additions and 2 deletions

View File

@ -72,6 +72,11 @@ static int EINA_MODULE_LOG_DOM = -1;
#endif
#define WRN(...) EINA_LOG_DOM_WARN(EINA_MODULE_LOG_DOM, __VA_ARGS__)
#ifdef INF
#undef INF
#endif
#define INF(...) EINA_LOG_DOM_INFO(EINA_MODULE_LOG_DOM, __VA_ARGS__)
#ifdef DBG
#undef DBG
#endif
@ -337,8 +342,7 @@ EAPI Eina_Bool eina_module_load(Eina_Module *m)
if ((*initcall)() == EINA_TRUE)
goto ok;
ERR("could not find eina's entry symbol %s inside module %s, or the init function failed",
EINA_MODULE_SYMBOL_INIT, m->file);
INF("init function returned false for %s", m->file);
dlclose(dl_handle);
return EINA_FALSE;
ok: