From 06f2284bcd4047390b93be3f1d952e76942e8538 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 30 Sep 2013 11:23:11 -0400 Subject: [PATCH] added output to show bound address on instance start --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index 7a6f68dc7a..a081cd4fa3 100644 --- a/app.js +++ b/app.js @@ -66,6 +66,7 @@ nconf.set('upload_url', nconf.get('url') + 'uploads/'); winston.info('Initializing NodeBB v' + pkg.version + ', on port ' + nconf.get('port') + ', using Redis store at ' + nconf.get('redis:host') + ':' + nconf.get('redis:port') + '.'); + winston.info('NodeBB instance bound to: ' + (nconf.get('bind_address') || 'Any address')); if (process.env.NODE_ENV === 'development') { winston.info('Base Configuration OK.');