don't error on a bad synctex call

This commit is contained in:
Henry Oswald 2018-08-23 11:18:05 +01:00
parent 250f4a42f0
commit 905a761544
2 changed files with 2 additions and 6 deletions

View file

@ -209,11 +209,7 @@ module.exports = CompileManager =
return callback(error)
CompileManager._runSynctex project_id, user_id, command, (error, stdout) ->
return callback(error) if error?
if stdout.toLowerCase().indexOf("warning") == -1
logType = "log"
else
logType = "err"
logger[logType] project_id: project_id, user_id:user_id, file_name: file_name, line: line, column: column, command:command, stdout: stdout, "synctex code output"
logger.log project_id: project_id, user_id:user_id, file_name: file_name, line: line, column: column, command:command, stdout: stdout, "synctex code output"
callback null, CompileManager._parseSynctexFromCodeOutput(stdout)
syncFromPdf: (project_id, user_id, page, h, v, callback = (error, filePositions) ->) ->

View file

@ -109,7 +109,7 @@ module.exports = DockerRunner =
err.code = exitCode
return callback(err)
containerReturned = true
options.SecurityOpt = null #small log line
options?.HostConfig?.SecurityOpt = null #small log line
logger.log err:err, exitCode:exitCode, options:options, "docker container has exited"
callbackIfFinished()