Skip to content

Commit

Permalink
Update summary message with ignored page count
Browse files Browse the repository at this point in the history
  • Loading branch information
juljimm committed Dec 5, 2020
1 parent e342ec5 commit 4fd2710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function start(options) {

const time = Date.now()
await new Promise((resolve) => { queue.done = () => resolve() })
spinner.succeed(`Exported ${urls.length} pages in ${Date.now() - time} ms`)
spinner.succeed(`Exported ${counter} pages (${urls.length - counter} ignored) from total ${urls.length} pages in ${Date.now() - time} ms`)

if (options.writeSummary)
writeSummary(urls, options)
Expand Down

0 comments on commit 4fd2710

Please sign in to comment.