From 349de1694d4759154983a18a3ccfa96380b9c3d1 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 24 May 2015 10:15:16 -0400 Subject: [PATCH] fixed log line in web installer --- install/web.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/web.js b/install/web.js index 0587238244..9d53349724 100644 --- a/install/web.js +++ b/install/web.js @@ -41,8 +41,7 @@ web.install = function(port) { function launchExpress(port) { server = app.listen(port, function() { - var host = server.address().address; - winston.info('Web installer listening on http://%s:%s', host, port); + winston.info('Web installer listening on http://%s:%s', '0.0.0.0', port); }); }