diff --git a/src/abstractions/log.service.ts b/src/abstractions/log.service.ts new file mode 100644 index 0000000000..80a4b32472 --- /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; +}