Standardize log levels used by logging statements across the project
[babeltrace.git] / src / python-plugin-provider / python-plugin-provider.c
index eb59f8ca492da3b944fdb35fa1a3f54e565ce09f..b4bbff475421326b97983da83cc01022d6d8322a 100644 (file)
@@ -402,14 +402,15 @@ bt_plugin_set *bt_plugin_python_create_all_from_file(const char *path)
                goto error;
        }
 
-       BT_LOGD("Creating all Python plugins from file: path=\"%s\"", path);
+       BT_LOGI("Trying to create all Python plugins from file: path=\"%s\"",
+               path);
        path_len = strlen(path);
 
        /* File name ends with `.py` */
        if (strncmp(path + path_len - PYTHON_PLUGIN_FILE_EXT_LEN,
                        PYTHON_PLUGIN_FILE_EXT,
                        PYTHON_PLUGIN_FILE_EXT_LEN) != 0) {
-               BT_LOGD("Skipping non-Python file: path=\"%s\"", path);
+               BT_LOGI("Skipping non-Python file: path=\"%s\"", path);
                goto error;
        }
 
@@ -422,7 +423,7 @@ bt_plugin_set *bt_plugin_python_create_all_from_file(const char *path)
 
        if (strncmp(basename, PYTHON_PLUGIN_FILE_PREFIX,
                        PYTHON_PLUGIN_FILE_PREFIX_LEN) != 0) {
-               BT_LOGD("Skipping Python file not starting with `%s`: "
+               BT_LOGI("Skipping Python file not starting with `%s`: "
                        "path=\"%s\"", PYTHON_PLUGIN_FILE_PREFIX, path);
                goto error;
        }
This page took 0.035017 seconds and 4 git commands to generate.