remove some console.logs

This commit is contained in:
Henry Oswald 2018-07-30 15:11:41 +01:00
parent 1ef8ea328c
commit dc225f6aa3
3 changed files with 0 additions and 4 deletions

View file

@ -133,7 +133,6 @@ resCacher =
if Settings.smokeTest
do runSmokeTest = ->
logger.log("running smoke tests")
console.log(__dirname, __filename)
smokeTest.run(require.resolve(__dirname + "/test/smoke/js/SmokeTests.js"))({}, resCacher)
setTimeout(runSmokeTest, 30 * 1000)

View file

@ -121,11 +121,9 @@ module.exports = ResourceWriter =
callback() #try and continue compiling even if http resource can not be downloaded at this time
else
process = require("process")
console.log "writing file out", path, process.getuid()
fs.writeFile path, resource.content, callback
try
result = fs.lstatSync(path)
console.log "path stats", result
catch e
checkPath: (basePath, resourcePath, callback) ->

View file

@ -36,7 +36,6 @@ module.exports = UrlFetcher =
logger.log url:url, filePath: filePath, "finished downloading file into cache"
urlStream.on "response", (res) ->
console.log
if res.statusCode >= 200 and res.statusCode < 300
fileStream = fs.createWriteStream(filePath)