reduce log level

This commit is contained in:
Henry Oswald
2018-08-23 11:16:28 +01:00
parent b4107b7391
commit 607bb74ffa

View File

@@ -107,9 +107,10 @@ module.exports = DockerRunner =
if exitCode is 1 # exit status from chktex
err = DockerRunner.ERR_EXITED
err.code = exitCode
logger.err err:err, exitCode:exitCode, options:options, "docker container has exited"
return callback(err)
containerReturned = true
options.SecurityOpt = null #small log line
logger.log err:err, exitCode:exitCode, options:options, "docker container has exited"
callbackIfFinished()
_getContainerOptions: (command, image, volumes, timeout, environment) ->