X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Fctf%2Ffs-src%2Ffs.c;h=d0a729b6d214cbc2a0074d8bf5f6370b62660c91;hb=350ad6c1c5f45a4e90c33e3c1354125c209bbf02;hp=5ff6d352a723d4f2763a5c8836aca9266e97bba0;hpb=578e048b5debf169e286e5b5cc747b5d6c16886d;p=babeltrace.git diff --git a/src/plugins/ctf/fs-src/fs.c b/src/plugins/ctf/fs-src/fs.c index 5ff6d352..d0a729b6 100644 --- a/src/plugins/ctf/fs-src/fs.c +++ b/src/plugins/ctf/fs-src/fs.c @@ -28,7 +28,6 @@ #include "common/common.h" #include #include "compat/uuid.h" -#include "plugins/plugins-common.h" #include #include "common/assert.h" #include @@ -42,7 +41,7 @@ #include "../common/utils/utils.h" #include "query.h" -#define BT_LOG_TAG "PLUGIN-CTF-FS-SRC" +#define BT_LOG_TAG "PLUGIN/SRC.CTF.FS" #include "logging.h" static @@ -457,7 +456,7 @@ int create_one_port_for_trace(struct ctf_fs_component *ctf_fs, goto error; } - BT_LOGD("Creating one port named `%s`", port_name); + BT_LOGI("Creating one port named `%s`", port_name); /* Create output port for this file */ port_data = g_new0(struct ctf_fs_port_data, 1); @@ -881,13 +880,13 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace) if (!strcmp(basename, CTF_FS_METADATA_FILENAME)) { /* Ignore the metadata stream. */ - BT_LOGD("Ignoring metadata file `%s" G_DIR_SEPARATOR_S "%s`", + BT_LOGI("Ignoring metadata file `%s" G_DIR_SEPARATOR_S "%s`", ctf_fs_trace->path->str, basename); continue; } if (basename[0] == '.') { - BT_LOGD("Ignoring hidden file `%s" G_DIR_SEPARATOR_S "%s`", + BT_LOGI("Ignoring hidden file `%s" G_DIR_SEPARATOR_S "%s`", ctf_fs_trace->path->str, basename); continue; } @@ -904,7 +903,7 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace) g_string_append_printf(file->path, "%s" G_DIR_SEPARATOR_S "%s", ctf_fs_trace->path->str, basename); if (!g_file_test(file->path->str, G_FILE_TEST_IS_REGULAR)) { - BT_LOGD("Ignoring non-regular file `%s`", + BT_LOGI("Ignoring non-regular file `%s`", file->path->str); ctf_fs_file_destroy(file); file = NULL; @@ -919,7 +918,7 @@ int create_ds_file_groups(struct ctf_fs_trace *ctf_fs_trace) if (file->size == 0) { /* Skip empty stream. */ - BT_LOGD("Ignoring empty file `%s`", file->path->str); + BT_LOGI("Ignoring empty file `%s`", file->path->str); ctf_fs_file_destroy(file); continue; } @@ -1160,7 +1159,7 @@ int ctf_fs_find_traces(GList **trace_paths, const char *start_path) dir = g_dir_open(start_path, 0, &error); if (!dir) { if (error->code == G_FILE_ERROR_ACCES) { - BT_LOGD("Cannot open directory `%s`: %s (code %d): continuing", + BT_LOGI("Cannot open directory `%s`: %s (code %d): continuing", start_path, error->message, error->code); goto end; } @@ -1928,7 +1927,7 @@ end: BT_HIDDEN bt_self_component_status ctf_fs_init( bt_self_component_source *self_comp, - const bt_value *params, UNUSED_VAR void *init_method_data) + const bt_value *params, __attribute__((unused)) void *init_method_data) { struct ctf_fs_component *ctf_fs; bt_self_component_status ret = BT_SELF_COMPONENT_STATUS_OK;