Skip to content

Commit da378d4

Browse files
committed
fix naming
1 parent 3a6a698 commit da378d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mod.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ export class LokiLogger {
8686
return this.log('WARN', text, meta);
8787
}
8888
public error(text: string, meta?: Record<string, string>) {
89-
return this.log('WARN', text, meta);
89+
return this.log('ERROR', text, meta);
9090
}
9191
public debug(text: string, meta?: Record<string, string>) {
92-
return this.log('WARN', text, meta);
92+
return this.log('DEBUG', text, meta);
9393
}
9494
}

0 commit comments

Comments
 (0)