Skip to content

Commit

Permalink
Remove accidental debug console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Mar 29, 2024
1 parent 0600e41 commit adf9ddf
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ function mtimeFromEntry (entry) {
}

function toStream (zip) {
console.log('doing to zip')
const result = through()
const q = queue()
let didErr = false
Expand Down Expand Up @@ -122,7 +121,6 @@ function toStream (zip) {
}
})

console.log('Returned zip retult')
return result
}

Expand All @@ -136,7 +134,6 @@ function unzipFile (zipPath) {
.on('error', (err) => result.emit('error', err))
.pipe(result)
})
console.log('returned result')
return result
}

Expand Down

0 comments on commit adf9ddf

Please sign in to comment.