diff --git a/controller/PostgreSQL.cpp b/controller/PostgreSQL.cpp index 6d2e78a88..64b0767bf 100644 --- a/controller/PostgreSQL.cpp +++ b/controller/PostgreSQL.cpp @@ -594,7 +594,7 @@ void PostgreSQL::initializeNetworks() auto dur = std::chrono::duration_cast(end - start);; total += dur.count(); ++count; - if (count % 1000 == 0) { + if (count % 10000 == 0) { fprintf(stderr, "Averaging %llu us per network\n", (total/count)); } } @@ -748,7 +748,7 @@ void PostgreSQL::initializeMembers() auto dur = std::chrono::duration_cast(end - start);; total += dur.count(); ++count; - if (count % 1000 == 0) { + if (count % 10000 == 0) { fprintf(stderr, "Averaging %llu us per member\n", (total/count)); } }