export interface ILogRecord { args: any[] ctx: Record lv: LogLv type: string time: number } export enum LogLv { Debug = 0, Log = 1, Info = 2, Warn = 3, Error = 4, }