aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/matcher.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
index f21293299c7..c0416fbf3fb 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
@@ -296,7 +296,8 @@ Matcher::match(const SearchRequest &request, vespalib::ThreadBundle &threadBundl
if (my_stats.softDoomed()) {
coverage.degradeTimeout();
coverage.setCovered(my_stats.docsCovered());
- LOG(debug, "soft doomed, degraded from timeout covered = %lu", coverage.getCovered()); }
+ LOG(debug, "soft doomed, degraded from timeout covered = %lu", coverage.getCovered());
+ }
LOG(debug, "numThreadsPerSearch = %zu. Configured = %d, estimated hits=%d, totalHits=%ld",
numThreadsPerSearch, _rankSetup->getNumThreadsPerSearch(), estHits, reply->totalHitCount);
}