Do not use printf_warning() in the library
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 5 May 2017 17:55:51 +0000 (13:55 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sun, 28 May 2017 16:57:42 +0000 (12:57 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
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.024829 seconds and 4 git commands to generate.