Skip to content

Commit

Permalink
[fix] Added the default dir column which outputs the sourceDir from…
Browse files Browse the repository at this point in the history
… `forever-monitor`. Fixes #367.
  • Loading branch information
indexzero committed Apr 21, 2013
1 parent 9cbe4cb commit 6047462
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,12 @@ forever.columns = {
return proc.logFile ? proc.logFile.magenta : '';
}
},
dir: {
color: 'grey',
get: function (proc) {
return proc.sourceDir.grey;
}
},
uptime: {
color: 'yellow',
get: function (proc) {
Expand Down

0 comments on commit 6047462

Please sign in to comment.