Use console.info in os download

`console.info` calls can be quieted by the `--quiet` option.
This commit is contained in:
Juan Cruz Viotti 2015-09-29 15:15:39 -04:00
parent 4072edcced
commit 6377618c12
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@
output = fs.createWriteStream(options.output);
return helpers.waitStream(stream.pipe(output))["return"](options.output);
}).tap(function(output) {
return console.log("The image was downloaded to " + output);
return console.info("The image was downloaded to " + output);
}).nodeify(done);
}
};

View File

@ -48,7 +48,7 @@ exports.download =
return helpers.waitStream(stream.pipe(output)).return(options.output)
.tap (output) ->
console.log("The image was downloaded to #{output}")
console.info("The image was downloaded to #{output}")
.nodeify(done)
stepHandler = (step) ->