From 6b3eebbe3c2806f8702442cf11b13d23f44e4775 Mon Sep 17 00:00:00 2001 From: Behzad Rabiei Date: Sun, 27 Oct 2024 19:02:22 +0400 Subject: [PATCH] test CIs --- bot/src/index.ts | 2 +- hivemind-adapter/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/src/index.ts b/bot/src/index.ts index 82edd30e..783da172 100644 --- a/bot/src/index.ts +++ b/bot/src/index.ts @@ -32,5 +32,5 @@ async function app(): Promise { } app().catch((error) => { - logger.fatal(error, 'Failed To start the application!') + logger.fatal(error, 'Failed To start the application!!') }) diff --git a/hivemind-adapter/src/main.ts b/hivemind-adapter/src/main.ts index e0cc1a14..1e481389 100644 --- a/hivemind-adapter/src/main.ts +++ b/hivemind-adapter/src/main.ts @@ -5,6 +5,6 @@ import { Logger } from 'nestjs-pino' async function bootstrap() { const app = await NestFactory.createApplicationContext(AppModule) const logger = app.get(Logger) - logger.log('App is running....') + logger.log('App is running...') } bootstrap()