Add missing line-feeds in logging
[babeltrace.git] / lib / plugin-system / plugin.c
index d6aca93356afc00ed108bb92472fd21afaca43a5..295140c08581dbca2eb976828cc7f881e8298391 100644 (file)
@@ -85,14 +85,14 @@ struct bt_plugin *bt_plugin_create_from_module(GModule *module,
 
        if (!g_module_symbol(module, PLUGIN_SYMBOL_NAME,
                        (gpointer *) &plugin->name)) {
-               printf_error("Unable to resolve plugin symbol %s from %s",
+               printf_verbose("Unable to resolve plugin symbol %s from %s\n",
                                PLUGIN_SYMBOL_NAME, g_module_name(module));
                goto error;
        }
 
        if (!g_module_symbol(module, PLUGIN_SYMBOL_LICENSE,
                        (gpointer *) &plugin->license)) {
-               printf_error("Unable to resolve plugin symbol %s from %s",
+               printf_verbose("Unable to resolve plugin symbol %s from %s\n",
                                PLUGIN_SYMBOL_LICENSE, g_module_name(module));
                goto error;
        }
This page took 0.023472 seconds and 4 git commands to generate.