aboutsummaryrefslogtreecommitdiff
path: root/bin/vicmap2osm.js
diff options
context:
space:
mode:
authorAndrew Harvey <andrew@alantgeo.com.au>2021-05-19 23:21:31 +1000
committerAndrew Harvey <andrew@alantgeo.com.au>2021-05-19 23:21:31 +1000
commit66ec9f9177a685129e917ff6bb8d503779c668f9 (patch)
tree1cf15607a3501cd8b2d07ca2beb679e3cabaa4be /bin/vicmap2osm.js
parenta7151f6a4c935971250684a94d4ee47dc5fda8af (diff)
log progress as actual number
Diffstat (limited to 'bin/vicmap2osm.js')
-rwxr-xr-xbin/vicmap2osm.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/vicmap2osm.js b/bin/vicmap2osm.js
index 954fdff..97139ab 100755
--- a/bin/vicmap2osm.js
+++ b/bin/vicmap2osm.js
@@ -44,7 +44,7 @@ const transform = new Transform({
if (!argv.quiet) {
if (process.stdout.isTTY && sourceCount % 10000 === 0) {
- process.stdout.write(` ${sourceCount / 1000}k\r`)
+ process.stdout.write(` ${sourceCount.toLocaleString()}\r`)
}
}