Overrides the console's stdout and stderr streams to prefix each log message with a stamp. Similar to https://github.com/bahamas10/node-log-timestamp but console methods are untouched, so things like console.log's application of util.format still work.
Examples
console;;console;
Output:
Object: myRobot { number: 5 }
2013-08-17T21:37:16.212Z Object: myRobot { number: 5 }
If desired, a custom stamp can also be set:
{ return Date + ' Server X ';};console;
Output:
1378137011853 Server X [ 1, 2, 3 ]