summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
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 9eb82ae7ab3..55d9655d805 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
@@ -345,10 +345,10 @@ Matcher::match(const SearchRequest &request, vespalib::ThreadBundle &threadBundl
_stats.updatesoftDoomFactor(request.getTimeout(), softLimit, adjustedDuration);
}
LOG(info, "Triggered softtimeout factor adjustment. Coverage = %lu of %u documents. request=%1.3f, doomOvertime=%1.3f, limit=%1.3f and duration=%1.3f, rankprofile=%s"
- ", factor adjusted from %1.3f to %1.3f",
+ ", factor %sadjusted from %1.3f to %1.3f",
covered, numActiveLids,
request.getTimeout().sec(), my_stats.doomOvertime().sec(), softLimit.sec(), duration.sec(),
- request.ranking.c_str(), old, _stats.softDoomFactor());
+ request.ranking.c_str(), (allowedSoftTimeoutFactorAdjustment ? "" : "NOT "), old, _stats.softDoomFactor());
}
}
return reply;