We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a23889 commit a987cc6Copy full SHA for a987cc6
src/osmdata.cpp
@@ -499,11 +499,12 @@ class multithreaded_processor
499
timer.stop();
500
501
if (get_logger().show_progress()) {
502
- fmt::print(stderr, "\rLeft to process: 0.");
+ fmt::print(stderr, "\rLeft to process: 0.\n");
503
}
504
505
- log_info("{} pending {}s took {} at a rate of {:.2f}/s", ids_queued,
506
- type, util::human_readable_duration(timer.elapsed()),
+ log_info("Processing {} pending {}s took {} at a rate of {:.2f}/s",
+ ids_queued, type,
507
+ util::human_readable_duration(timer.elapsed()),
508
timer.per_second(ids_queued));
509
510
0 commit comments