From 79f7950089fb330e6e1cc3538cfda1371e2b347d Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Wed, 21 May 2025 10:26:48 +0100 Subject: [PATCH] chore: change "server listening" log message --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 55941eb..e7414b6 100644 --- a/src/app.ts +++ b/src/app.ts @@ -32,7 +32,7 @@ const HOST = process.env.HOST || "localhost"; const PORT = process.env.PORT || 3000; const server = app.listen(PORT, () => { - logger.info(`Server is listening on port http://${HOST}:${PORT}`); + logger.info(`Server is listening on http://${HOST}:${PORT}`); }); process.on("SIGINT", () => {