diff --git a/src/Dictionaries/IPAddressDictionary.cpp b/src/Dictionaries/IPAddressDictionary.cpp index dd6bb3bb42c..6844caf65a9 100644 --- a/src/Dictionaries/IPAddressDictionary.cpp +++ b/src/Dictionaries/IPAddressDictionary.cpp @@ -417,7 +417,7 @@ void IPAddressDictionary::loadData() return cmpres; }); if (deleted_count > 0) - LOG_WARNING(logger, "removing {} non-unique subnets from input", deleted_count); + LOG_TRACE(logger, "removing {} non-unique subnets from input", deleted_count); auto & ipv6_col = ip_column.emplace(); ipv6_col.resize_fill(IPV6_BINARY_LENGTH * ip_records.size()); @@ -444,7 +444,7 @@ void IPAddressDictionary::loadData() return compareTo(a, b); }); if (deleted_count > 0) - LOG_WARNING(logger, "removing {} non-unique subnets from input", deleted_count); + LOG_TRACE(logger, "removing {} non-unique subnets from input", deleted_count); auto & ipv4_col = ip_column.emplace(); ipv4_col.reserve(ip_records.size());