1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

add log service abstraction

This commit is contained in:
Kyle Spearrin
2018-02-23 22:10:58 -05:00
parent e8814e8864
commit 9adabdab48

View 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;
}