@cryptotaxi247 / netdata-1 / commits / 9aa6bf6d9

disable internal log (#13678)

Costa Tsaousis committed Sep 20, 2022 at 00:11 UTC 9aa6bf6d9f462cf5b936cca7d8c67ec4b2ded97b
1 file changed +2 -2
libnetdata/dictionary/dictionary.c
+2 -2
@@ -1524,13 +1524,13 @@ static bool dictionary_free_all_resources(DICTIONARY *dict, size_t *mem, bool fo
1524 freez(dict);
1525
1526 internal_error(
1527 - true,
1527 + false,
1528 "DICTIONARY: Freed dictionary created from %s() %zu@%s, having %ld (counted %zu) entries, %ld referenced, %ld pending deletion, total freed memory: %zu bytes (sizeof(dict) = %zu, sizeof(item) = %zu).",
1529 creation_function,
1530 creation_line,
1531 creation_file,
1532 entries, counted_items, referenced_items, pending_deletion_items,
1533 - dict_size, sizeof(DICTIONARY), sizeof(DICTIONARY_ITEM) + sizeof(DICTIONARY_ITEM_SHARED));
1533 + dict_size + item_size, sizeof(DICTIONARY), sizeof(DICTIONARY_ITEM) + sizeof(DICTIONARY_ITEM_SHARED));
1534
1535 if(mem)
1536 *mem = dict_size + item_size + index_size;