export type AbstractLogger = {
    log(arg: string): void;
};
