Skip to content

Commit

Permalink
[fix] Fixed bug in date formatting, minutes should show correctly now
Browse files Browse the repository at this point in the history
  • Loading branch information
jvduf committed Apr 14, 2012
1 parent d127520 commit fe66143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jitsu/commands/logs.js
Expand Up @@ -160,7 +160,7 @@ function putLogs (results, appName, amount, showApp) {
// '[' + datum.json.app.magenta + ']
datum.json.message.split('\n').forEach(function (line) {
var now = new Date(datum.timestamp);
now = dateformat(now, "mm/dd HH:mm:ss Z");
now = dateformat(now, "mm/dd HH:MM:ss Z");
if (line.length) {
console.log('[' + now.toString().yellow + '] ' + line);
}
Expand Down

0 comments on commit fe66143

Please sign in to comment.