summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2020-09-29 00:38:47 +0200
committerTor Egge <Tor.Egge@broadpark.no>2020-09-29 00:38:47 +0200
commita054522697c20748594c30552af3ff3605ebe20e (patch)
treee84aabdf6f514ac7b4963d711caaff6820545680 /searchcore
parent480b966594e48387818239911949d807aed523d3 (diff)
Fix format string.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/apps/vespa-feed-bm/vespa_feed_bm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/apps/vespa-feed-bm/vespa_feed_bm.cpp b/searchcore/src/apps/vespa-feed-bm/vespa_feed_bm.cpp
index 2456cc0ec47..5b9f7a58293 100644
--- a/searchcore/src/apps/vespa-feed-bm/vespa_feed_bm.cpp
+++ b/searchcore/src/apps/vespa-feed-bm/vespa_feed_bm.cpp
@@ -926,7 +926,7 @@ run_update_async_tasks(PersistenceProviderFixture &f, vespalib::ThreadStackExecu
auto end_time = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed = end_time - start_time;
uint32_t new_errors = f._feed_handler->get_error_count() - old_errors;
- LOG(info, "%8.2f updates/s %u errors for pass=%u", bm_params.get_documents() / elapsed.count(), new_errors, pass);
+ LOG(info, "%8.2f updates/s, %u errors for pass=%u", bm_params.get_documents() / elapsed.count(), new_errors, pass);
time_bias += bm_params.get_documents();
}