From 2990b33dc6a36cfb7519a2be27e2b43ea51485ad Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 13 Nov 2014 16:47:38 -0500 Subject: [PATCH] linting --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 88ba08c354..1a626e9b74 100644 --- a/app.js +++ b/app.js @@ -39,7 +39,7 @@ winston.remove(winston.transports.Console); winston.add(winston.transports.Console, { colorize: true, timestamp: function() { - var date = new Date; + var date = new Date(); return date.getDate() + '/' + (date.getMonth() + 1) + ' ' + date.getHours() + ':' + date.getMinutes() + ' [' + global.process.pid + ']'; }, level: global.env === 'production' ? 'info' : 'verbose'