X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fpython-plugin-provider%2Fpython-plugin-provider.c;h=b4bbff475421326b97983da83cc01022d6d8322a;hb=3f7d4d90b0456de9d34fac337350818ef06163bd;hp=eb59f8ca492da3b944fdb35fa1a3f54e565ce09f;hpb=44ced4ff8e8b5e46ef03f3aec737fca5ca2c7003;p=babeltrace.git diff --git a/src/python-plugin-provider/python-plugin-provider.c b/src/python-plugin-provider/python-plugin-provider.c index eb59f8ca..b4bbff47 100644 --- a/src/python-plugin-provider/python-plugin-provider.c +++ b/src/python-plugin-provider/python-plugin-provider.c @@ -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; }