From 99fe98929c7201ca2801f2806551c8930fa65774 Mon Sep 17 00:00:00 2001 From: mleanos Date: Mon, 26 Oct 2015 23:10:00 -0700 Subject: [PATCH] Logger Development config default Reverts the default Logger setting to use the stdout by default, rather than the stream option. --- config/env/development.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/env/development.js b/config/env/development.js index 6b3232fa41..0c74753e8d 100644 --- a/config/env/development.js +++ b/config/env/development.js @@ -19,16 +19,16 @@ module.exports = { options: { // Stream defaults to process.stdout // Uncomment/comment to toggle the logging to a log on the file system - stream: { - directoryPath: process.cwd(), - fileName: 'access.log', - rotatingLogs: { // for more info on rotating logs - https://github.com/holidayextras/file-stream-rotator#usage - active: false, // activate to use rotating logs - fileName: 'access-%DATE%.log', // if rotating logs are active, this fileName setting will be used - frequency: 'daily', - verbose: false - } - } + //stream: { + // directoryPath: process.cwd(), + // fileName: 'access.log', + // rotatingLogs: { // for more info on rotating logs - https://github.com/holidayextras/file-stream-rotator#usage + // active: false, // activate to use rotating logs + // fileName: 'access-%DATE%.log', // if rotating logs are active, this fileName setting will be used + // frequency: 'daily', + // verbose: false + // } + //} } }, app: {