chore: change "server listening" log message

This commit is contained in:
Corban-Lee Jones 2025-05-21 10:26:48 +01:00
parent 57311fab1e
commit 79f7950089

View File

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