From 21ed4585698928ba7b2f9bedb3772c1c4ffd39f7 Mon Sep 17 00:00:00 2001 From: tgpethan Date: Sat, 13 Feb 2021 00:33:47 +0000 Subject: [PATCH] Make listening message report the actual port --- Binato.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Binato.js b/Binato.js index 09481a6..db81760 100644 --- a/Binato.js +++ b/Binato.js @@ -60,4 +60,4 @@ app.use((req, res) => { }); }); -app.listen(config.port, () => global.consoleHelper.printBancho("Binato is up! Listening at port 5001")); \ No newline at end of file +app.listen(config.port, () => global.consoleHelper.printBancho(`Binato is up! Listening at port ${config.port}`)); \ No newline at end of file