mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user