fixed log line in web installer

This commit is contained in:
Julian Lam
2015-05-24 10:15:16 -04:00
parent 714c7356f9
commit 349de1694d

View File

@@ -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);
});
}