Skip to content

Commit

Permalink
[fix] add a log when we retry
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrugzz committed Sep 10, 2013
1 parent 2847278 commit 25d87d8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/solenoid.js
Expand Up @@ -400,6 +400,7 @@ var startApp = exports.startApp = function startApp(options, callback) {
//
function retry(e) {
if (++retries < maxRetries) {
logger.info('Retrying the tail..');
return tailLog(next);
}
next(e);
Expand Down

0 comments on commit 25d87d8

Please sign in to comment.