aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-06-29 07:08:51 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-06-29 07:08:51 +0000
commit793cd4bda8e8854b09f0434327e9334615a8ce72 (patch)
tree09e7d06d2afdeac31fc00273954e29d648268a75 /searchcore
parentd67311bdcc89c20981e440cc4e80a16949691d56 (diff)
Also log count.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/matcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
index 24a5e8d2fea..6dadc046fe6 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
@@ -324,10 +324,10 @@ Matcher::match(const SearchRequest &request, vespalib::ThreadBundle &threadBundl
_stats.updatesoftDoomFactor(request.getTimeout(), overtimeLimit, adjustedDuration);
}
if ((_stats.softDoomed() < 10) || (_stats.softDoomed()%100 == 0))
- LOG(info, "Triggered softtimeout %s. Coverage = %lu of %u documents. request=%1.3f, doomOvertime=%1.3f, overtime_limit=%1.3f and duration=%1.3f, rankprofile=%s"
+ LOG(info, "Triggered softtimeout %s count: %zu. Coverage = %lu of %u documents. request=%1.3f, doomOvertime=%1.3f, overtime_limit=%1.3f and duration=%1.3f, rankprofile=%s"
", factor %s adjusted from %1.3f to %1.3f",
isDoomExplicit ? "with query override" : "factor adjustment",
- covered, numActiveLids,
+ _stats.softDoomed(), covered, numActiveLids,
vespalib::to_s(request.getTimeout()), vespalib::to_s(my_stats.doomOvertime()), vespalib::to_s(overtimeLimit), vespalib::to_s(duration),
request.ranking.c_str(), (allowedSoftTimeoutFactorAdjustment ? "" : "NOT "), old, _stats.softDoomFactor());
}