Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Behzad-rabiei committed Oct 27, 2024
1 parent 3b8f593 commit f42c843
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ async function app(): Promise<void> {
}

app().catch((error) => {
logger.fatal(error, 'Failed To start the application!')
logger.fatal(error, 'Failed To start the application')
})
2 changes: 1 addition & 1 deletion hivemind-adapter/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit f42c843

Please sign in to comment.