Logging: standardize logging tags
[babeltrace.git] / src / plugins / lttng-utils / debug-info / trace-ir-data-copy.c
index c677770db58c24289034bacd43202ec6bdd73679..880a942af03a672448f609f3e438d7dbe77d864c 100644 (file)
@@ -23,7 +23,7 @@
  * SOFTWARE.
  */
 
-#define BT_LOG_TAG "PLUGIN-LTTNG-UTILS-DEBUG-INFO-TRACE-IR-DATA-COPY"
+#define BT_LOG_TAG "PLUGIN/FLT.LTTNG-UTILS.DEBUG-INFO/TRACE-IR-DATA-COPY"
 #include "logging.h"
 
 #include <inttypes.h>
@@ -157,7 +157,7 @@ void copy_field_content(const bt_field *in_field, bt_field *out_field)
        out_fc_type = bt_field_get_class_type(out_field);
        BT_ASSERT(in_fc_type == out_fc_type);
 
-       BT_LOGD("Copying content of field: in-f-addr=%p, out-f-addr=%p",
+       BT_LOGV("Copying content of field: in-f-addr=%p, out-f-addr=%p",
                        in_field, out_field);
        switch (in_fc_type) {
        case BT_FIELD_CLASS_TYPE_UNSIGNED_INTEGER:
@@ -282,6 +282,6 @@ void copy_field_content(const bt_field *in_field, bt_field *out_field)
        default:
                abort();
        }
-       BT_LOGD("Copied content of field: in-f-addr=%p, out-f-addr=%p",
+       BT_LOGV("Copied content of field: in-f-addr=%p, out-f-addr=%p",
                        in_field, out_field);
 }
This page took 0.023794 seconds and 4 git commands to generate.