Skip to content

Commit

Permalink
Formatted by prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Byunk committed Dec 24, 2023
1 parent e4bd80a commit b05711f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config/winston.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ if (process.env.NODE_ENV !== 'production') {
],
});
}
logger.info("logger initialized")
logger.info('logger initialized');

export default logger;
2 changes: 1 addition & 1 deletion src/db/postgre.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const sequelize = new Sequelize(
host: process.env.DB_HOST || 'localhost',
port: Number(process.env.DB_PORT) || 5432,
dialect: 'postgres',
logging: msg => logger.debug(msg),
logging: (msg) => logger.debug(msg),
schema: schemaName,
},
);
Expand Down

0 comments on commit b05711f

Please sign in to comment.