Merge pull request #1554 from roramirez/replace-console-log-none

serveronly: Replace the console.log of none for a \n new line
This commit is contained in:
Michael Teeuw 2019-01-27 11:22:17 +01:00 committed by GitHub
commit 44896db668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
var app = require("../js/app.js");
app.start(function(config) {
console.log("");
var bindAddress = config.address ? config.address : "localhost";
console.log("Ready to go! Please point your browser to: http://" + bindAddress + ":" + config.port);
console.log("\nReady to go! Please point your browser to: http://" + bindAddress + ":" + config.port);
});