summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-08-29 14:23:06 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2019-08-29 14:23:06 +0000
commit81ba5590f8749ec885dc7e969c37db204088282b (patch)
tree63edaea6ce1fc80229ee0814e806bcc27436ee4d /searchcore
parentfb3faed94ddccfb184e59feb754e07119bf53755 (diff)
Update log message
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;