Make listening message report the actual port

This commit is contained in:
tgpethan 2021-02-13 00:33:47 +00:00
parent cde3a90922
commit 21ed458569

View file

@ -60,4 +60,4 @@ app.use((req, res) => {
});
});
app.listen(config.port, () => global.consoleHelper.printBancho("Binato is up! Listening at port 5001"));
app.listen(config.port, () => global.consoleHelper.printBancho(`Binato is up! Listening at port ${config.port}`));