Re-work error checking

This commit is contained in:
Shane Kilkelly 2017-06-22 09:41:36 +01:00
parent d0bbe8beae
commit ba9477cdb3

View file

@ -11,10 +11,11 @@ module.exports =
timeout: 30 * 1000
killSignal: "SIGKILL"
exec args, opts,(err, stdout, stderr)->
if err? and err?.signal == 'SIGKILL'
if err?
if err.signal == 'SIGKILL'
logger.warn {err: err, stderr: stderr, localPath: localPath}, "optimiser timeout reached"
err = null
if err?
else
logger.err err:err, stderr:stderr, localPath:localPath, "something went wrong converting compressPng"
else
logger.log localPath:localPath, "finished compressPng file"