From 9adabdab483aa463e38382bebdad40305f4974f1 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 23 Feb 2018 22:10:58 -0500 Subject: [PATCH] add log service abstraction --- src/abstractions/log.service.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/abstractions/log.service.ts diff --git a/src/abstractions/log.service.ts b/src/abstractions/log.service.ts new file mode 100644 index 00000000000..80a4b324726 --- /dev/null +++ b/src/abstractions/log.service.ts @@ -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; +}