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", () => {