mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-08 08:32:53 +01:00
fixed comma to semicolon
This commit is contained in:
4
app.js
4
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) {
|
||||
|
||||
Reference in New Issue
Block a user