sink.utils.counter: honor component's initial log level
[babeltrace.git] / src / plugins / utils / counter / counter.c
index 200b9aa752866a68ba96443df5f78f787de902fb..2438a4e02a8c3dc028c5e6c3ee106ca9283151f4 100644 (file)
  * SOFTWARE.
  */
 
-#define BT_LOG_TAG "PLUGIN-UTILS-COUNTER-FLT"
-#include "logging.h"
+#define BT_LOG_OUTPUT_LEVEL (counter->log_level)
+#define BT_LOG_TAG "PLUGIN/FLT.UTILS.COUNTER"
+#include "logging/log.h"
 
 #include <babeltrace2/babeltrace.h>
 #include "common/macros.h"
 #include "common/common.h"
-#include "plugins/plugins-common.h"
 #include "common/assert.h"
 #include <inttypes.h>
 #include <stdint.h>
@@ -139,7 +139,7 @@ BT_HIDDEN
 bt_self_component_status counter_init(
                bt_self_component_sink *component,
                const bt_value *params,
-               UNUSED_VAR void *init_method_data)
+               __attribute__((unused)) void *init_method_data)
 {
        bt_self_component_status ret;
        struct counter *counter = g_new0(struct counter, 1);
@@ -151,6 +151,9 @@ bt_self_component_status counter_init(
                goto error;
        }
 
+       counter->log_level = bt_component_get_logging_level(
+               bt_self_component_as_component(
+                       bt_self_component_sink_as_self_component(component)));
        ret = bt_self_component_sink_add_input_port(component,
                "in", NULL, NULL);
        if (ret != BT_SELF_COMPONENT_STATUS_OK) {
This page took 0.023627 seconds and 4 git commands to generate.