`ctf` plugin: `bt_msg_iter`: use object's log level
[babeltrace.git] / src / plugins / ctf / fs-src / fs.c
index dc94e95b5547486b2d7f4850106d200e9276b1e3..7ea06e13da7b53886f5c494c4e0241c3d121fcf6 100644 (file)
@@ -261,7 +261,7 @@ bt_self_message_iterator_status ctf_fs_iterator_init(
        msg_iter_data->msg_iter = bt_msg_iter_create(
                port_data->ds_file_group->ctf_fs_trace->metadata->tc,
                bt_common_get_page_size(BT_LOG_OUTPUT_LEVEL) * 8,
-               ctf_fs_ds_file_medops, NULL);
+               ctf_fs_ds_file_medops, NULL, BT_LOG_OUTPUT_LEVEL);
        if (!msg_iter_data->msg_iter) {
                BT_LOGE_STR("Cannot create a CTF message iterator.");
                ret = BT_SELF_MESSAGE_ITERATOR_STATUS_NOMEM;
@@ -722,7 +722,7 @@ int add_ds_file_to_ds_file_group(struct ctf_fs_trace *ctf_fs_trace,
 
        msg_iter = bt_msg_iter_create(ctf_fs_trace->metadata->tc,
                bt_common_get_page_size(BT_LOG_OUTPUT_LEVEL) * 8,
-               ctf_fs_ds_file_medops, NULL);
+               ctf_fs_ds_file_medops, NULL, BT_LOG_OUTPUT_LEVEL);
        if (!msg_iter) {
                BT_LOGE_STR("Cannot create a CTF message iterator.");
                goto error;
This page took 0.024088 seconds and 4 git commands to generate.