mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
log out errors more clearly
This commit is contained in:
parent
5ed6ef571f
commit
41ca3a4222
2 changed files with 6 additions and 2 deletions
|
@ -22,7 +22,9 @@ module.exports = CompileManager =
|
|||
timer = new Metrics.Timer("write-to-disk")
|
||||
logger.log project_id: request.project_id, "starting compile"
|
||||
ResourceWriter.syncResourcesToDisk request.project_id, request.resources, compileDir, (error) ->
|
||||
return callback(error) if error?
|
||||
if error?
|
||||
logger.err err:error, project_id: request.project_id, "error writing resources to disk"
|
||||
return callback(error)
|
||||
logger.log project_id: request.project_id, time_taken: Date.now() - timer.start, "written files to disk"
|
||||
timer.done()
|
||||
|
||||
|
|
|
@ -13,7 +13,9 @@ module.exports = OutputFileFinder =
|
|||
logger.log directory: directory, "getting output files"
|
||||
|
||||
OutputFileFinder._getAllFiles directory, (error, allFiles = []) ->
|
||||
return callback(error) if error?
|
||||
if error?
|
||||
logger.err err:error, "error finding all output files"
|
||||
return callback(error)
|
||||
jobs = []
|
||||
outputFiles = []
|
||||
for file in allFiles
|
||||
|
|
Loading…
Reference in a new issue