We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86bf712 commit f4fa25eCopy full SHA for f4fa25e
apps/buz/src/main.ts
@@ -6,6 +6,7 @@
6
import { Logger } from "@nestjs/common";
7
import { NestFactory } from "@nestjs/core";
8
import { AppModule } from "./app/app.module";
9
+import { now } from "@lazy-orange/date-time/utils";
10
11
async function bootstrap() {
12
const app = await NestFactory.create(AppModule);
@@ -14,7 +15,7 @@ async function bootstrap() {
14
15
const port = process.env.PORT || 3000;
16
await app.listen(port);
17
Logger.log(
- `🚀 Application is running on: http://localhost:${port}/${globalPrefix}`
18
+ `🚀 Application is running on: http://localhost:${port}/${globalPrefix} at ${now()}`
19
);
20
}
21
0 commit comments