chore (backend): move SQL query logs to trace level (#10907)

This commit is contained in:
naskya 2024-04-25 08:05:45 +09:00
parent 322b2392de
commit a2316b7caf
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -94,7 +94,7 @@ class DbLogger implements Logger {
public logQueryError(error: string, query: string, parameters?: any[]) {
sqlLogger.error(error);
sqlLogger.error(this.highlight(query));
sqlLogger.trace(this.highlight(query));
}
public logQuerySlow(time: number, query: string, parameters?: any[]) {