Merge pull request #238 from st63jun/fix-logging-msg

Fix logging message
This commit is contained in:
Axel Kittenberger 2014-04-24 13:17:21 +02:00
commit 6d69134971
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