Commit 4b5a577721089602946d69b431f410704f0c3b68
1 parent
ab5532df1f
Exists in
master
log on can not find task from history
Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff
partner-otomax.js
... | ... | @@ -59,8 +59,9 @@ function callbackReport(requestId, rc, message) { |
59 | 59 | } else { |
60 | 60 | taskHistory.get(requestId, function(err, archivedTask) { |
61 | 61 | if (archivedTask) { |
62 | - logger.verbose('DEBUG', {archivedTask: archivedTask}); | |
63 | 62 | resendDelay.register(archivedTask); |
63 | + } else { | |
64 | + logger.warn('Can not find task from history', {request_id: requestId}); | |
64 | 65 | } |
65 | 66 | }); |
66 | 67 | } |