remove unnecessary console.log from hash benchmark

This commit is contained in:
Brian Gough 2021-05-17 12:00:57 +01:00
parent 939ad3af31
commit 8c80ddd27a

View file

@ -68,13 +68,6 @@ files.forEach((file) => {
})
})
async.timesSeries(
10,
(n, cb) => {
console.log('run', n)
async.series(jobs, cb)
},
() => {
console.log('DONE')
}
)
async.timesSeries(10, (n, cb) => {
async.series(jobs, cb)
})