build(aio): make less verbose tools

This commit is contained in:
Jesus Rodriguez 2017-05-10 12:38:43 +02:00 committed by Pete Bacon Darwin
parent 56833a6171
commit b44f5c69e1
1 changed files with 0 additions and 4 deletions

View File

@ -35,10 +35,6 @@ class ExampleZipper {
let output = fs.createWriteStream(zipFileName); let output = fs.createWriteStream(zipFileName);
let archive = archiver('zip'); let archive = archiver('zip');
output.on('close', function () {
console.log('zip created: ' + zipFileName + ' (' + archive.pointer() + ' total bytes)');
});
archive.on('error', function (err) { archive.on('error', function (err) {
throw err; throw err;
}); });