From a857d4cab0593bf0aeef037a0faa542d5883c37d Mon Sep 17 00:00:00 2001 From: Micheil Smith Date: Fri, 14 Feb 2014 05:04:08 +0000 Subject: [PATCH] Added logging on start up detailing where themes are being loaded from. --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index 5df5ab293c..18d7757a82 100644 --- a/app.js +++ b/app.js @@ -93,6 +93,7 @@ function start() { winston.info('Time: ' + new Date()); winston.info('Initializing NodeBB v' + pkg.version); 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_dir')); if (process.env.NODE_ENV === 'development') { winston.info('Base Configuration OK.');