From 85328704a024a781d61796083fd809a2886f9c29 Mon Sep 17 00:00:00 2001 From: mahyargdz Date: Wed, 19 Feb 2025 13:02:02 +0330 Subject: [PATCH] fix: typo in main ts --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();