mirror of
https://github.com/bitwarden/browser
synced 2025-01-01 12:47:57 +01:00
add log service abstraction
This commit is contained in:
parent
e8814e8864
commit
9adabdab48
7
src/abstractions/log.service.ts
Normal file
7
src/abstractions/log.service.ts
Normal file
@ -0,0 +1,7 @@
|
||||
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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user