From b2f2561e745b044117c9b2a8d74bbb8df0f26f24 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 24 May 2015 10:39:52 -0400 Subject: [PATCH] adding a bit of logging when launching NodeBB from the web installer --- install/web.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/web.js b/install/web.js index 9d53349724..673e9c22fd 100644 --- a/install/web.js +++ b/install/web.js @@ -103,6 +103,9 @@ function launch(req, res) { stdio: ['ignore', 'ignore', 'ignore'] }); + process.stdout.write('\nStarting NodeBB\n'); + process.stdout.write(' "./nodebb stop" to stop the NodeBB server\n'); + process.stdout.write(' "./nodebb log" to view server output\n'); child.unref(); process.exit(0);