Support different log levels for database query error messages

This commit is contained in:
Mononaut
2023-11-14 07:49:03 +00:00
parent ab8b557e73
commit 7aad664112
3 changed files with 13 additions and 6 deletions

View File

@@ -157,4 +157,6 @@ class Logger {
}
}
export type LogLevel = 'emerg' | 'alert' | 'crit' | 'err' | 'warn' | 'notice' | 'info' | 'debug';
export default new Logger();