Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryHengZJ authored May 9, 2024
1 parent 17abc5c commit 51f673a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class App {
async initDatabase() {
// Initialize database
try {
await this.AppDataSource.initialize();
await this.AppDataSource.initialize()
logger.info('📦 [server]: Data Source is initializing...')

// Run Migrations Scripts
Expand Down Expand Up @@ -74,7 +74,7 @@ export class App {
this.telemetry = new Telemetry()
logger.info('📦 [server]: Data Source has been initialized!')
} catch (error) {
logger.error('❌ [server]: Error during Data Source initialization:', error);
logger.error('❌ [server]: Error during Data Source initialization:', error)
}
}

Expand Down

0 comments on commit 51f673a

Please sign in to comment.