mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
remove some console.logs
This commit is contained in:
parent
1ef8ea328c
commit
dc225f6aa3
3 changed files with 0 additions and 4 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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) ->
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue