Type alias Logger<N>

Logger<N>: {
    id: string;
    level?: number;
    count(...args: any[]): void;
    on(level: number | N, logFunction: LogFunction): void;
    write(entry: LogEntry): void;
} & { [ k in N]: LogMethod }

Type Parameters

Generated using TypeDoc