summaryrefslogtreecommitdiff
path: root/lib/trace/log/logger.ts
blob: 37a7e3fb0f22c1150c0590ff522ed1a33fa84157 (plain)
1
2
3
4
5
import { LogLevel } from './level';

export interface ILogger {
    readonly log: (level: LogLevel, ...args: string[]) => void;
}