We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6a698 commit da378d4Copy full SHA for da378d4
mod.ts
@@ -86,9 +86,9 @@ export class LokiLogger {
86
return this.log('WARN', text, meta);
87
}
88
public error(text: string, meta?: Record<string, string>) {
89
- return this.log('WARN', text, meta);
+ return this.log('ERROR', text, meta);
90
91
public debug(text: string, meta?: Record<string, string>) {
92
+ return this.log('DEBUG', text, meta);
93
94
0 commit comments