Reduce warning about failing to dlopen a module to debug.

There's another warning for runtime about not being able to load
a specified module and this one creates a lot of noise during a parallel
build.
This commit is contained in:
John Ralls
2018-02-19 12:26:29 -08:00
parent 62fd179f87
commit 9865934410

View File

@@ -300,7 +300,7 @@ gnc_module_get_info(const char * fullpath)
gmodule = g_module_open(fullpath, G_MODULE_BIND_LAZY);
if (gmodule == NULL)
{
g_warning("Failed to dlopen() '%s': %s\n", fullpath, g_module_error());
g_debug("Failed to dlopen() '%s': %s\n", fullpath, g_module_error());
return NULL;
}