export interface ILoggingService { debug(...content: any[]): any; info(...content: any[]): any; log(...content: any[]): any; warn(...content: any[]): any; error(...content: any[]): any; }