diff --git a/core/modules/commands/server.js b/core/modules/commands/server.js index 5023f9774..df0a84acc 100644 --- a/core/modules/commands/server.js +++ b/core/modules/commands/server.js @@ -274,9 +274,8 @@ Command.prototype.execute = function() { password: password }); this.server.listen(port); - if(this.commander.verbose) { - console.log("Serving on port " + port); - } + console.log("Serving on port " + port); + console.log("(press ctrl-C to exit)"); return null; };