From 2e38e24a317098d4c69381e9bd53b7a7af497391 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 14 Nov 2022 13:09:15 +0100 Subject: [PATCH] Clarify amount of time spent on evaluating mismatching apply rules --- lib/config/configitem.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/config/configitem.cpp b/lib/config/configitem.cpp index b1ce51f23..b4d44e975 100644 --- a/lib/config/configitem.cpp +++ b/lib/config/configitem.cpp @@ -653,7 +653,9 @@ bool ConfigItem::CommitItems(const ActivationContext::Ptr& context, WorkQueue& u if (!silent) { Log(LogNotice, "ConfigItem") << "Spent " << totalTimeSpentOnApplyMismatches.AsSeconds() - << " seconds on evaluating mismatching apply rules and parent objects."; + << " seconds on evaluating mismatching apply rules and parent objects." + << " (This summary isn't aware of apply rules being evaluated in parallel." + << " Therefore consider dividing the number by amount of CPU cores according to htop.)"; /* log stats for external parsers */ typedef std::map ItemCountMap;