From 8536fb64aae51b6c6090c67557d5f3f4fe6a6141 Mon Sep 17 00:00:00 2001 From: Austin King <shout@ozten.com> Date: Mon, 12 Mar 2012 13:47:13 -0700 Subject: [PATCH] Updating timestamp to an ISO format globally per lloyd --- lib/logging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logging.js b/lib/logging.js index 5b13b397e..d868df2f7 100644 --- a/lib/logging.js +++ b/lib/logging.js @@ -37,7 +37,7 @@ var filename = path.join(log_path, configuration.get('process_type') + ".log"); exports.logger = new (winston.Logger)({ transports: [new (winston.transports.File)({ - timestamp: true, + timestamp: function () { return new Date().toISOString() }, filename: filename, colorize: true, handleExceptions: !!process.env['LOG_TO_CONSOLE'] -- GitLab