From 8c92c9fab4e9913aada265dcd95d430862f90489 Mon Sep 17 00:00:00 2001
From: Lloyd Hilaiel <lloyd@hilaiel.com>
Date: Sat, 19 Nov 2011 10:15:52 -0700
Subject: [PATCH] add timestamps to all log entries.  closes #541

---
 lib/logging.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/logging.js b/lib/logging.js
index 6d22f08cb..cc242c41e 100644
--- a/lib/logging.js
+++ b/lib/logging.js
@@ -69,6 +69,7 @@ var filename = path.join(log_path, configuration.get('process_type') + ".log");
 
 exports.logger = new (winston.Logger)({
   transports: [new (winston.transports.File)({
+    timestamp: true,
     filename: filename,
     colorize: true,
     handleExceptions: true
-- 
GitLab