From 86267cce9f01dae5981fe662cc1a2a0966f1a512 Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Mon, 23 Nov 2020 16:22:37 +0100 Subject: [PATCH] DatabaseCampaign: increase progress report interval Change-Id: I439bf16b98fb11f89ece398fcaf13cc4fa2dd4cd --- src/core/cpn/DatabaseCampaign.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/cpn/DatabaseCampaign.cc b/src/core/cpn/DatabaseCampaign.cc index b028bd31..679f2a69 100644 --- a/src/core/cpn/DatabaseCampaign.cc +++ b/src/core/cpn/DatabaseCampaign.cc @@ -273,7 +273,7 @@ bool DatabaseCampaign::run_variant(Database::Variant variant) { this->cb_send_pilot(pilot); - if ((++sent_pilots) % 1000 == 0) { + if ((++sent_pilots) % 10000 == 0) { log_send << "pushed " << sent_pilots << " pilots into the queue" << std::endl; } }