Skip to content

Commit

Permalink
Slightly better English for the 'restarting' messages
Browse files Browse the repository at this point in the history
  • Loading branch information
dandv committed Mar 7, 2014
1 parent b873164 commit 7b20f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,11 +836,11 @@ forever.logEvents = function (monitor) {
});

monitor.on('watch:restart', function (info) {
forever.out.error('restarting script because ' + info.file + ' changed')
forever.out.error('restarting script because ' + info.file + ' changed');
});

monitor.on('restart', function () {
forever.out.error('Forever restarting script for ' + monitor.times + ' time')
forever.out.error('Script restart attempt #' + monitor.times);
});

monitor.on('exit:code', function (code, signal) {
Expand Down

0 comments on commit 7b20f0f

Please sign in to comment.