summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-02-07 21:17:15 +0100
committerHenning Baldersheim <balder@oath.com>2018-02-07 21:17:15 +0100
commit1d576eec7da8295f6bd9f25844f9ed1d9160d458 (patch)
treeedab997fdf1f721e5b4e798019a7111766eafffd /searchcore
parent1236cbaf66c985a2ca2026c9fc7bc4a2e9d54eb5 (diff)
Ill placed brace.
Diffstat (limited to 'searchcore')
-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);
}