1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

log level type

This commit is contained in:
Kyle Spearrin
2018-02-23 23:10:13 -05:00
parent 9adabdab48
commit b747830c5b
4 changed files with 11 additions and 1 deletions

View File

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