Do not use printf_warning() in the library
[babeltrace.git] / lib / plugin / plugin.c
index c5dfd03338c325d58b22311419925c8b398084f1..4a36fd697c1ef30bf2d8d866cfa4e3bcc9972793 100644 (file)
@@ -60,7 +60,7 @@ void init_python_plugin_provider(void) {
                g_module_open(PYTHON_PLUGIN_PROVIDER_FILENAME,
                        G_MODULE_BIND_LOCAL);
        if (!python_plugin_provider_module) {
-               printf_warning("Cannot find `%s`: Python plugin support is disabled\n",
+               printf_verbose("Cannot find `%s`: Python plugin support is disabled\n",
                        PYTHON_PLUGIN_PROVIDER_FILENAME);
                return;
        }
@@ -68,7 +68,7 @@ void init_python_plugin_provider(void) {
        if (!g_module_symbol(python_plugin_provider_module,
                        PYTHON_PLUGIN_PROVIDER_SYM_NAME_STR,
                        (gpointer) &bt_plugin_python_create_all_from_file_sym)) {
-               printf_warning("Cannot find the Python plugin provider loading symbole: Python plugin support is disabled\n");
+               printf_verbose("Cannot find the Python plugin provider loading symbole: Python plugin support is disabled\n");
        }
 }
 
This page took 0.025455 seconds and 4 git commands to generate.