From ca72a4b0fc2ab77fb90b9ca258a5437f5e8efd27 Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Wed, 4 Sep 2013 12:13:36 -0400 Subject: [PATCH] fixed comma to semicolon --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index eb241c8170..a6cfa0e264 100644 --- a/app.js +++ b/app.js @@ -27,7 +27,7 @@ var fs = require('fs'), meta = require('./src/meta.js'); // Runtime environment -global.env = process.env.NODE_ENV || 'production', +global.env = process.env.NODE_ENV || 'production'; @@ -39,7 +39,7 @@ winston.add(winston.transports.Console, { winston.add(winston.transports.File, { filename:'error.log', level:'error' -}) +}); // TODO: remove once https://github.com/flatiron/winston/issues/280 is fixed winston.err = function(err) {