Fix logging message

This commit is contained in:
Jun SAITO 2013-09-30 23:05:59 +09:00
parent c23e9841ee
commit 1bfd98d64d
1 changed files with 2 additions and 2 deletions

View File

@ -172,9 +172,9 @@ default.collect = function( agent, exitcode )
end
else
if rc == 'ok' then
log('Normal', 'Retrying ',agent.etype,' on ',agent.sourcePath,' = ',exitcode)
elseif rc == 'again' then
log('Normal', 'Finished ',agent.etype,' on ',agent.sourcePath,' = ',exitcode)
elseif rc == 'again' then
log('Normal', 'Retrying ',agent.etype,' on ',agent.sourcePath,' = ',exitcode)
elseif rc == 'die' then
log('Error', 'Failure with ',agent.etype,' on ',agent.sourcePath,' = ',exitcode)
else