diff --git a/apps/buz/src/main.ts b/apps/buz/src/main.ts index a0d7d86..87f95d2 100644 --- a/apps/buz/src/main.ts +++ b/apps/buz/src/main.ts @@ -6,6 +6,7 @@ import { Logger } from "@nestjs/common"; import { NestFactory } from "@nestjs/core"; import { AppModule } from "./app/app.module"; +import { now } from "@lazy-orange/date-time/utils"; async function bootstrap() { const app = await NestFactory.create(AppModule); @@ -14,7 +15,7 @@ async function bootstrap() { const port = process.env.PORT || 3000; await app.listen(port); Logger.log( - `🚀 Application is running on: http://localhost:${port}/${globalPrefix}` + `🚀 Application is running on: http://localhost:${port}/${globalPrefix} at ${now()}` ); }