Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
add log service abstraction
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Feb 24, 2018
1 parent e8814e8 commit 9adabda
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/abstractions/log.service.ts
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 9adabda

Please sign in to comment.