add log service abstraction

This commit is contained in:
Kyle Spearrin 2018-02-23 22:10:58 -05:00
parent e8814e8864
commit 9adabdab48
1 changed files with 7 additions and 0 deletions

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