Skip to content

Commit

Permalink
chore(database/log): DBへのクエリーログをverboseモードでのみ出力するように (#923)
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid authored Feb 1, 2025
1 parent 6462968 commit fc19699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/postgres.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class MyCustomLogger implements Logger {

@bindThis
public logQuery(query: string, parameters?: any[]) {
sqlLogger.info(this.highlight(query));
sqlLogger.debug(this.highlight(query));
}

@bindThis
Expand Down

0 comments on commit fc19699

Please sign in to comment.