Skip to content

Commit a987cc6

Browse files
committed
Fix output of pending ways/relations being processed
1 parent 0a23889 commit a987cc6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/osmdata.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,11 +499,12 @@ class multithreaded_processor
499499
timer.stop();
500500

501501
if (get_logger().show_progress()) {
502-
fmt::print(stderr, "\rLeft to process: 0.");
502+
fmt::print(stderr, "\rLeft to process: 0.\n");
503503
}
504504

505-
log_info("{} pending {}s took {} at a rate of {:.2f}/s", ids_queued,
506-
type, util::human_readable_duration(timer.elapsed()),
505+
log_info("Processing {} pending {}s took {} at a rate of {:.2f}/s",
506+
ids_queued, type,
507+
util::human_readable_duration(timer.elapsed()),
507508
timer.per_second(ids_queued));
508509
}
509510

0 commit comments

Comments
 (0)