fix incorrect host display in the server

This commit is contained in:
Raphaël Jakse 2020-07-13 15:52:40 +02:00
parent 620af09719
commit 921e2f620d
1 changed files with 1 additions and 1 deletions

View File

@ -1173,7 +1173,7 @@ fs.readFile(GAMES_BACKUP, function (err, data) {
});
server.listen(port, host, function () {
console.log("Server listening on: http://localhost:%s", port);
console.log("Server listening on: http://%s:%s", host, port);
});
});