From 74049dccb13aedc39d9f1a4e9148cb80792a6d4a Mon Sep 17 00:00:00 2001 From: Micheil Smith Date: Sun, 16 Feb 2014 05:36:29 +0000 Subject: [PATCH] Added log message about where configuration is being loaded from --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index f5cc40c5ee..58f028294d 100644 --- a/app.js +++ b/app.js @@ -99,6 +99,7 @@ function start() { winston.info('Time: ' + new Date()); winston.info('Initializing NodeBB v' + pkg.version); + winston.info('* using configuration stored in: ' + configFile); winston.info('* using ' + nconf.get('database') +' store at ' + nconf.get(nconf.get('database') + ':host') + ':' + nconf.get(nconf.get('database') + ':port')); winston.info('* using themes stored in: ' + nconf.get('themes_path'));