mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 01:03:35 +00:00
log level type
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import { LogLevelType } from '../enums/logLevelType';
|
||||
|
||||
export abstract class LogService {
|
||||
debug: (message: string) => void;
|
||||
info: (message: string) => void;
|
||||
warning: (message: string) => void;
|
||||
error: (message: string) => void;
|
||||
write: (type: string, message: string) => void;
|
||||
write: (level: LogLevelType, message: string) => void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user