chore(database/log): DBへのクエリーログをverboseモードでのみ出力するように (MisskeyIO#923)

This commit is contained in:
あわわわとーにゅ 2025-02-01 23:03:18 +09:00 committed by GitHub
parent 6462968b9d
commit fc19699a49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,7 @@ class MyCustomLogger implements Logger {
@bindThis @bindThis
public logQuery(query: string, parameters?: any[]) { public logQuery(query: string, parameters?: any[]) {
sqlLogger.info(this.highlight(query)); sqlLogger.debug(this.highlight(query));
} }
@bindThis @bindThis