lib: strictly type function return status enumerations
[babeltrace.git] / src / lib / value.c
index ca1687fac722bc68ef1c9cb02efef6e95b473bbd..285971d43b1573c9aa1f388aacb36f83f9ad356f 100644 (file)
@@ -20,8 +20,8 @@
  * SOFTWARE.
  */
 
-#define BT_LOG_TAG "VALUES"
-#include "lib/lib-logging.h"
+#define BT_LOG_TAG "LIB/VALUE"
+#include "lib/logging.h"
 
 #include <stdlib.h>
 #include <string.h>
@@ -36,6 +36,7 @@
 #include "lib/assert-pre.h"
 #include "lib/value.h"
 #include "common/assert.h"
+#include "func-status.h"
 
 #define BT_VALUE_TO_BOOL(_base) ((struct bt_value_bool *) (_base))
 #define BT_VALUE_TO_INTEGER(_base) ((struct bt_value_integer *) (_base))
@@ -300,7 +301,7 @@ bt_bool bt_value_bool_compare(const struct bt_value *object_a,
 {
        if (BT_VALUE_TO_BOOL(object_a)->value !=
                        BT_VALUE_TO_BOOL(object_b)->value) {
-               BT_LOGV("Boolean value objects are different: "
+               BT_LOGT("Boolean value objects are different: "
                        "bool-a-val=%d, bool-b-val=%d",
                        BT_VALUE_TO_BOOL(object_a)->value,
                        BT_VALUE_TO_BOOL(object_b)->value);
@@ -317,12 +318,12 @@ bt_bool bt_value_integer_compare(const struct bt_value *object_a,
        if (BT_VALUE_TO_INTEGER(object_a)->value.u !=
                        BT_VALUE_TO_INTEGER(object_b)->value.u) {
                if (object_a->type == BT_VALUE_TYPE_UNSIGNED_INTEGER) {
-                       BT_LOGV("Unsigned integer value objects are different: "
+                       BT_LOGT("Unsigned integer value objects are different: "
                                "int-a-val=%" PRIu64 ", int-b-val=%" PRIu64,
                                BT_VALUE_TO_INTEGER(object_a)->value.u,
                                BT_VALUE_TO_INTEGER(object_b)->value.u);
                } else {
-                       BT_LOGV("Signed integer value objects are different: "
+                       BT_LOGT("Signed integer value objects are different: "
                                "int-a-val=%" PRId64 ", int-b-val=%" PRId64,
                                BT_VALUE_TO_INTEGER(object_a)->value.i,
                                BT_VALUE_TO_INTEGER(object_b)->value.i);
@@ -340,7 +341,7 @@ bt_bool bt_value_real_compare(const struct bt_value *object_a,
 {
        if (BT_VALUE_TO_REAL(object_a)->value !=
                        BT_VALUE_TO_REAL(object_b)->value) {
-               BT_LOGV("Real number value objects are different: "
+               BT_LOGT("Real number value objects are different: "
                        "real-a-val=%f, real-b-val=%f",
                        BT_VALUE_TO_REAL(object_a)->value,
                        BT_VALUE_TO_REAL(object_b)->value);
@@ -356,7 +357,7 @@ bt_bool bt_value_string_compare(const struct bt_value *object_a,
 {
        if (strcmp(BT_VALUE_TO_STRING(object_a)->gstr->str,
                        BT_VALUE_TO_STRING(object_b)->gstr->str) != 0) {
-               BT_LOGV("String value objects are different: "
+               BT_LOGT("String value objects are different: "
                        "string-a-val=\"%s\", string-b-val=\"%s\"",
                        BT_VALUE_TO_STRING(object_a)->gstr->str,
                        BT_VALUE_TO_STRING(object_b)->gstr->str);
@@ -377,7 +378,7 @@ bt_bool bt_value_array_compare(const struct bt_value *object_a,
 
        if (bt_value_array_get_size(object_a) !=
                        bt_value_array_get_size(object_b)) {
-               BT_LOGV("Array values are different: size mismatch "
+               BT_LOGT("Array values are different: size mismatch "
                        "value-a-addr=%p, value-b-addr=%p, "
                        "value-a-size=%" PRId64 ", value-b-size=%" PRId64,
                        object_a, object_b,
@@ -397,7 +398,7 @@ bt_bool bt_value_array_compare(const struct bt_value *object_a,
                        object_b, i);
 
                if (!bt_value_compare(element_obj_a, element_obj_b)) {
-                       BT_LOGV("Array values's elements are different: "
+                       BT_LOGT("Array values's elements are different: "
                                "value-a-addr=%p, value-b-addr=%p, index=%d",
                                element_obj_a, element_obj_b, i);
                        ret = BT_FALSE;
@@ -420,7 +421,7 @@ bt_bool bt_value_map_compare(const struct bt_value *object_a,
 
        if (bt_value_map_get_size(object_a) !=
                        bt_value_map_get_size(object_b)) {
-               BT_LOGV("Map values are different: size mismatch "
+               BT_LOGT("Map values are different: size mismatch "
                        "value-a-addr=%p, value-b-addr=%p, "
                        "value-a-size=%" PRId64 ", value-b-size=%" PRId64,
                        object_a, object_b,
@@ -440,7 +441,7 @@ bt_bool bt_value_map_compare(const struct bt_value *object_a,
                        key_str);
 
                if (!bt_value_compare(element_obj_a, element_obj_b)) {
-                       BT_LOGV("Map values's elements are different: "
+                       BT_LOGT("Map values's elements are different: "
                                "value-a-addr=%p, value-b-addr=%p, key=\"%s\"",
                                element_obj_a, element_obj_b, key_str);
                        ret = BT_FALSE;
@@ -539,10 +540,9 @@ void bt_value_destroy(struct bt_object *obj)
 }
 
 BT_HIDDEN
-enum bt_value_status _bt_value_freeze(const struct bt_value *c_object)
+void _bt_value_freeze(const struct bt_value *c_object)
 {
        const struct bt_value *object = (void *) c_object;
-       enum bt_value_status ret = BT_VALUE_STATUS_OK;
 
        BT_ASSERT(object);
 
@@ -554,7 +554,7 @@ enum bt_value_status _bt_value_freeze(const struct bt_value *c_object)
        freeze_funcs[object->type]((void *) object);
 
 end:
-       return ret;
+       return;
 }
 
 enum bt_value_type bt_value_get_type(const struct bt_value *object)
@@ -784,7 +784,7 @@ void bt_value_bool_set(struct bt_value *bool_obj, bt_bool val)
        BT_ASSERT_PRE_VALUE_IS_TYPE(bool_obj, BT_VALUE_TYPE_BOOL);
        BT_ASSERT_PRE_VALUE_HOT(bool_obj, "Value object");
        BT_VALUE_TO_BOOL(bool_obj)->value = val;
-       BT_LOGV("Set boolean value's raw value: value-addr=%p, value=%d",
+       BT_LOGT("Set boolean value's raw value: value-addr=%p, value=%d",
                bool_obj, val);
 }
 
@@ -818,7 +818,7 @@ void bt_value_unsigned_integer_set(struct bt_value *integer_obj,
                uint64_t val)
 {
        bt_value_integer_set(integer_obj, BT_VALUE_TYPE_UNSIGNED_INTEGER, val);
-       BT_LOGV("Set unsigned integer value's raw value: "
+       BT_LOGT("Set unsigned integer value's raw value: "
                "value-addr=%p, value=%" PRIu64, integer_obj, val);
 }
 
@@ -827,7 +827,7 @@ void bt_value_signed_integer_set(struct bt_value *integer_obj,
 {
        bt_value_integer_set(integer_obj, BT_VALUE_TYPE_SIGNED_INTEGER,
                (uint64_t) val);
-       BT_LOGV("Set signed integer value's raw value: "
+       BT_LOGT("Set signed integer value's raw value: "
                "value-addr=%p, value=%" PRId64, integer_obj, val);
 }
 
@@ -844,7 +844,7 @@ void bt_value_real_set(struct bt_value *real_obj, double val)
        BT_ASSERT_PRE_VALUE_IS_TYPE(real_obj, BT_VALUE_TYPE_REAL);
        BT_ASSERT_PRE_VALUE_HOT(real_obj, "Value object");
        BT_VALUE_TO_REAL(real_obj)->value = val;
-       BT_LOGV("Set real number value's raw value: value-addr=%p, value=%f",
+       BT_LOGT("Set real number value's raw value: value-addr=%p, value=%f",
                real_obj, val);
 }
 
@@ -855,16 +855,16 @@ const char *bt_value_string_get(const struct bt_value *string_obj)
        return BT_VALUE_TO_STRING(string_obj)->gstr->str;
 }
 
-enum bt_value_status bt_value_string_set(
+enum bt_value_string_set_status bt_value_string_set(
                struct bt_value *string_obj, const char *val)
 {
        BT_ASSERT_PRE_NON_NULL(string_obj, "Value object");
        BT_ASSERT_PRE_VALUE_IS_TYPE(string_obj, BT_VALUE_TYPE_STRING);
        BT_ASSERT_PRE_VALUE_HOT(string_obj, "Value object");
        g_string_assign(BT_VALUE_TO_STRING(string_obj)->gstr, val);
-       BT_LOGV("Set string value's raw value: value-addr=%p, raw-value-addr=%p",
+       BT_LOGT("Set string value's raw value: value-addr=%p, raw-value-addr=%p",
                string_obj, val);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
 uint64_t bt_value_array_get_size(const struct bt_value *array_obj)
@@ -895,7 +895,7 @@ const struct bt_value *bt_value_array_borrow_element_by_index_const(
                (void *) array_obj, index);
 }
 
-enum bt_value_status bt_value_array_append_element(
+enum bt_value_array_append_element_status bt_value_array_append_element(
                struct bt_value *array_obj,
                struct bt_value *element_obj)
 {
@@ -908,16 +908,16 @@ enum bt_value_status bt_value_array_append_element(
        BT_ASSERT_PRE_VALUE_HOT(array_obj, "Array value object");
        g_ptr_array_add(typed_array_obj->garray, element_obj);
        bt_object_get_ref(element_obj);
-       BT_LOGV("Appended element to array value: array-value-addr=%p, "
+       BT_LOGT("Appended element to array value: array-value-addr=%p, "
                "element-value-addr=%p, new-size=%u",
                array_obj, element_obj, typed_array_obj->garray->len);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
-enum bt_value_status bt_value_array_append_bool_element(
-               struct bt_value *array_obj, bt_bool val)
+enum bt_value_array_append_element_status
+bt_value_array_append_bool_element(struct bt_value *array_obj, bt_bool val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *bool_obj = NULL;
 
        bool_obj = bt_value_bool_create_init(val);
@@ -927,10 +927,11 @@ enum bt_value_status bt_value_array_append_bool_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_unsigned_integer_element(
-               struct bt_value *array_obj, uint64_t val)
+enum bt_value_array_append_element_status
+bt_value_array_append_unsigned_integer_element(struct bt_value *array_obj,
+               uint64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_unsigned_integer_create_init(val);
@@ -940,10 +941,11 @@ enum bt_value_status bt_value_array_append_unsigned_integer_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_signed_integer_element(
-               struct bt_value *array_obj, int64_t val)
+enum bt_value_array_append_element_status
+bt_value_array_append_signed_integer_element(struct bt_value *array_obj,
+               int64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_signed_integer_create_init(val);
@@ -953,10 +955,10 @@ enum bt_value_status bt_value_array_append_signed_integer_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_real_element(
-               struct bt_value *array_obj, double val)
+enum bt_value_array_append_element_status
+bt_value_array_append_real_element(struct bt_value *array_obj, double val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *real_obj = NULL;
 
        real_obj = bt_value_real_create_init(val);
@@ -966,10 +968,11 @@ enum bt_value_status bt_value_array_append_real_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_string_element(
-               struct bt_value *array_obj, const char *val)
+enum bt_value_array_append_element_status
+bt_value_array_append_string_element(struct bt_value *array_obj,
+               const char *val)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *string_obj = NULL;
 
        string_obj = bt_value_string_create_init(val);
@@ -979,10 +982,10 @@ enum bt_value_status bt_value_array_append_string_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_empty_array_element(
-               struct bt_value *array_obj)
+enum bt_value_array_append_element_status
+bt_value_array_append_empty_array_element(struct bt_value *array_obj)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *empty_array_obj = NULL;
 
        empty_array_obj = bt_value_array_create();
@@ -992,10 +995,10 @@ enum bt_value_status bt_value_array_append_empty_array_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_append_empty_map_element(
-               struct bt_value *array_obj)
+enum bt_value_array_append_element_status
+bt_value_array_append_empty_map_element(struct bt_value *array_obj)
 {
-       enum bt_value_status ret;
+       enum bt_value_array_append_element_status ret;
        struct bt_value *map_obj = NULL;
 
        map_obj = bt_value_map_create();
@@ -1005,8 +1008,8 @@ enum bt_value_status bt_value_array_append_empty_map_element(
        return ret;
 }
 
-enum bt_value_status bt_value_array_set_element_by_index(
-               struct bt_value *array_obj, uint64_t index,
+enum bt_value_array_set_element_by_index_status
+bt_value_array_set_element_by_index(struct bt_value *array_obj, uint64_t index,
                struct bt_value *element_obj)
 {
        struct bt_value_array *typed_array_obj =
@@ -1021,10 +1024,10 @@ enum bt_value_status bt_value_array_set_element_by_index(
        bt_object_put_ref(g_ptr_array_index(typed_array_obj->garray, index));
        g_ptr_array_index(typed_array_obj->garray, index) = element_obj;
        bt_object_get_ref(element_obj);
-       BT_LOGV("Set array value's element: array-value-addr=%p, "
+       BT_LOGT("Set array value's element: array-value-addr=%p, "
                "index=%" PRIu64 ", element-value-addr=%p",
                array_obj, index, element_obj);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
 uint64_t bt_value_map_get_size(const struct bt_value *map_obj)
@@ -1059,9 +1062,9 @@ bt_bool bt_value_map_has_entry(const struct bt_value *map_obj, const char *key)
                GUINT_TO_POINTER(g_quark_from_string(key)));
 }
 
-enum bt_value_status bt_value_map_insert_entry(
-               struct bt_value *map_obj,
-               const char *key, struct bt_value *element_obj)
+enum bt_value_map_insert_entry_status bt_value_map_insert_entry(
+               struct bt_value *map_obj, const char *key,
+               struct bt_value *element_obj)
 {
        BT_ASSERT_PRE_NON_NULL(map_obj, "Map value object");
        BT_ASSERT_PRE_NON_NULL(key, "Key");
@@ -1071,16 +1074,16 @@ enum bt_value_status bt_value_map_insert_entry(
        g_hash_table_insert(BT_VALUE_TO_MAP(map_obj)->ght,
                GUINT_TO_POINTER(g_quark_from_string(key)), element_obj);
        bt_object_get_ref(element_obj);
-       BT_LOGV("Inserted value into map value: map-value-addr=%p, "
+       BT_LOGT("Inserted value into map value: map-value-addr=%p, "
                "key=\"%s\", element-value-addr=%p",
                map_obj, key, element_obj);
-       return BT_VALUE_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
-enum bt_value_status bt_value_map_insert_bool_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_bool_entry(
                struct bt_value *map_obj, const char *key, bt_bool val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *bool_obj = NULL;
 
        bool_obj = bt_value_bool_create_init(val);
@@ -1090,10 +1093,11 @@ enum bt_value_status bt_value_map_insert_bool_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_unsigned_integer_entry(
-               struct bt_value *map_obj, const char *key, uint64_t val)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_unsigned_integer_entry(struct bt_value *map_obj,
+               const char *key, uint64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_unsigned_integer_create_init(val);
@@ -1103,10 +1107,11 @@ enum bt_value_status bt_value_map_insert_unsigned_integer_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_signed_integer_entry(
-               struct bt_value *map_obj, const char *key, int64_t val)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_signed_integer_entry(struct bt_value *map_obj,
+               const char *key, int64_t val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *integer_obj = NULL;
 
        integer_obj = bt_value_signed_integer_create_init(val);
@@ -1116,10 +1121,10 @@ enum bt_value_status bt_value_map_insert_signed_integer_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_real_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_real_entry(
                struct bt_value *map_obj, const char *key, double val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *real_obj = NULL;
 
        real_obj = bt_value_real_create_init(val);
@@ -1129,11 +1134,11 @@ enum bt_value_status bt_value_map_insert_real_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_string_entry(
+enum bt_value_map_insert_entry_status bt_value_map_insert_string_entry(
                struct bt_value *map_obj, const char *key,
                const char *val)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *string_obj = NULL;
 
        string_obj = bt_value_string_create_init(val);
@@ -1143,10 +1148,11 @@ enum bt_value_status bt_value_map_insert_string_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_empty_array_entry(
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_empty_array_entry(
                struct bt_value *map_obj, const char *key)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *array_obj = NULL;
 
        array_obj = bt_value_array_create();
@@ -1156,10 +1162,10 @@ enum bt_value_status bt_value_map_insert_empty_array_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_insert_empty_map_entry(
-               struct bt_value *map_obj, const char *key)
+enum bt_value_map_insert_entry_status
+bt_value_map_insert_empty_map_entry(struct bt_value *map_obj, const char *key)
 {
-       enum bt_value_status ret;
+       enum bt_value_map_insert_entry_status ret;
        struct bt_value *empty_map_obj = NULL;
 
        empty_map_obj = bt_value_map_create();
@@ -1169,10 +1175,11 @@ enum bt_value_status bt_value_map_insert_empty_map_entry(
        return ret;
 }
 
-enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
-               bt_value_map_foreach_entry_func func, void *data)
+enum bt_value_map_foreach_entry_status bt_value_map_foreach_entry(
+               struct bt_value *map_obj, bt_value_map_foreach_entry_func func,
+               void *data)
 {
-       enum bt_value_status ret = BT_VALUE_STATUS_OK;
+       enum bt_value_map_foreach_entry_status ret = BT_FUNC_STATUS_OK;
        gpointer key, element_obj;
        GHashTableIter iter;
        struct bt_value_map *typed_map_obj = BT_VALUE_TO_MAP(map_obj);
@@ -1186,10 +1193,10 @@ enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
                const char *key_str = g_quark_to_string(GPOINTER_TO_UINT(key));
 
                if (!func(key_str, element_obj, data)) {
-                       BT_LOGV("User canceled the loop: key=\"%s\", "
+                       BT_LOGT("User canceled the loop: key=\"%s\", "
                                "value-addr=%p, data=%p",
                                key_str, element_obj, data);
-                       ret = BT_VALUE_STATUS_CANCELED;
+                       ret = BT_FUNC_STATUS_CANCELED;
                        break;
                }
        }
@@ -1197,17 +1204,17 @@ enum bt_value_status bt_value_map_foreach_entry(struct bt_value *map_obj,
        return ret;
 }
 
-enum bt_value_status bt_value_map_foreach_entry_const(
+enum bt_value_map_foreach_entry_const_status bt_value_map_foreach_entry_const(
                const struct bt_value *map_obj,
                bt_value_map_foreach_entry_const_func func, void *data)
 {
-       return bt_value_map_foreach_entry((void *) map_obj,
+       return (int) bt_value_map_foreach_entry((void *) map_obj,
                (bt_value_map_foreach_entry_func) func, data);
 }
 
 struct extend_map_element_data {
        struct bt_value *extended_obj;
-       enum bt_value_status status;
+       int status;
 };
 
 static
@@ -1220,7 +1227,7 @@ bt_bool extend_map_element(const char *key,
 
        /* Copy object which is to replace the current one */
        extend_data->status = bt_value_copy(extension_obj_elem,
-                                           &extension_obj_elem_copy);
+               &extension_obj_elem_copy);
        if (extend_data->status) {
                BT_LOGE("Cannot copy map element: addr=%p",
                        extension_obj_elem);
@@ -1244,7 +1251,7 @@ bt_bool extend_map_element(const char *key,
        goto end;
 
 error:
-       BT_ASSERT(extend_data->status != BT_VALUE_STATUS_OK);
+       BT_ASSERT(extend_data->status != BT_FUNC_STATUS_OK);
        ret = BT_FALSE;
 
 end:
@@ -1252,14 +1259,14 @@ end:
        return ret;
 }
 
-enum bt_value_status bt_value_map_extend(
+enum bt_value_map_extend_status bt_value_map_extend(
                const struct bt_value *base_map_obj,
                const struct bt_value *extension_obj,
                struct bt_value **extended_map_obj)
 {
        struct extend_map_element_data extend_data = {
                .extended_obj = NULL,
-               .status = BT_VALUE_STATUS_OK,
+               .status = BT_FUNC_STATUS_OK,
        };
 
        BT_ASSERT_PRE_NON_NULL(base_map_obj, "Base value object");
@@ -1313,10 +1320,10 @@ end:
        return extend_data.status;
 }
 
-enum bt_value_status bt_value_copy(const struct bt_value *object,
+enum bt_value_copy_status bt_value_copy(const struct bt_value *object,
                struct bt_value **copy_obj)
 {
-       enum bt_value_status status = BT_VALUE_STATUS_OK;
+       enum bt_value_copy_status status = BT_FUNC_STATUS_OK;
 
        BT_ASSERT_PRE_NON_NULL(object, "Value object");
        BT_ASSERT_PRE_NON_NULL(copy_obj, "Value object copy (output)");
@@ -1326,7 +1333,7 @@ enum bt_value_status bt_value_copy(const struct bt_value *object,
                BT_LOGD("Copied value object: copy-value-addr=%p",
                        copy_obj);
        } else {
-               status = BT_VALUE_STATUS_NOMEM;
+               status = BT_FUNC_STATUS_MEMORY_ERROR;
                *copy_obj = NULL;
                BT_LOGE_STR("Failed to copy value object.");
        }
@@ -1343,7 +1350,7 @@ bt_bool bt_value_compare(const struct bt_value *object_a,
        BT_ASSERT_PRE_NON_NULL(object_b, "Value object B");
 
        if (object_a->type != object_b->type) {
-               BT_LOGV("Values are different: type mismatch: "
+               BT_LOGT("Values are different: type mismatch: "
                        "value-a-addr=%p, value-b-addr=%p, "
                        "value-a-type=%s, value-b-type=%s",
                        object_a, object_b,
This page took 0.032376 seconds and 4 git commands to generate.