export interface ILogger {
    debug(...x: any[]): void;
    info(...x: any[]): void;
    warn(...x: any[]): void;
    error(...x: any[]): void;
}
