diff --git a/src/main.ts b/src/main.ts index 76f7ea4..b440fcb 100644 --- a/src/main.ts +++ b/src/main.ts @@ -27,8 +27,8 @@ async function bootstrap() { const PORT = configService.getOrThrow("PORT"); await app.listen(PORT, "0.0.0.0", () => { - logger.log(`Server running on http://localhost:${PORT}`); - logger.log(`Swagger running on http://localhost:${PORT}/api-docs`); + logger.log(`Server running at http://localhost:${PORT}`); + logger.log(`Swagger is serving at http://localhost:${PORT}/api-docs`); }); } bootstrap();