Skip to content

Commit 12efb87

Browse files
committed
serveronly: Replace the console.log of none for a \n new line
1 parent 9181be8 commit 12efb87

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

serveronly/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
var app = require("../js/app.js");
22
app.start(function(config) {
3-
console.log("");
43
var bindAddress = config.address ? config.address : "localhost";
5-
console.log("Ready to go! Please point your browser to: http://" + bindAddress + ":" + config.port);
4+
console.log("\nReady to go! Please point your browser to: http://" + bindAddress + ":" + config.port);
65
});

0 commit comments

Comments
 (0)