From 12efb87a23abf641e1836b19eb571aa60ca6f634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= Date: Sat, 26 Jan 2019 14:42:15 -0500 Subject: [PATCH] serveronly: Replace the console.log of none for a \n new line --- serveronly/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/serveronly/index.js b/serveronly/index.js index ccd4c294..3b8013ef 100644 --- a/serveronly/index.js +++ b/serveronly/index.js @@ -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); });