From b19de338678c95ba70bab608005417cc709f8434 Mon Sep 17 00:00:00 2001 From: Olivier Valentin Date: Mon, 22 Apr 2024 15:25:38 +0200 Subject: [PATCH] Stale log statement after renaming --- collector/lib/CollectorConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/lib/CollectorConfig.cpp b/collector/lib/CollectorConfig.cpp index 5769dba51c2..0885e7595a6 100644 --- a/collector/lib/CollectorConfig.cpp +++ b/collector/lib/CollectorConfig.cpp @@ -196,7 +196,7 @@ void CollectorConfig::InitCollectorConfig(CollectorArgs* args) { std::optional net = IPNet::parse(str); if (net) { - CLOG(INFO) << "Private network : " << *net; + CLOG(INFO) << "Detail network : " << *net; detailed_networks.emplace_back(std::move(*net)); } else { CLOG(ERROR) << "Invalid network in ROX_DETAIL_NETWORKS : " << str;