All files / lib/logger Logger.d.ts

0% Statements 0/13
0% Branches 0/1
0% Functions 0/1
0% Lines 0/13

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14                           
import { LogEntry, LogStructuredData } from "./LogEntry";
import { LogLevel } from "./LogLevel";
import { Reporter } from "./reporters/Reporter";
export declare class Logger {
    static reporters: Reporter[];
    logs: LogEntry[];
    log(level: LogLevel, msg: string, data?: LogStructuredData): void;
    info(msg: string, data?: LogStructuredData): void;
    warn(msg: string, data?: LogStructuredData): void;
    error(msg: string, data?: LogStructuredData): void;
    verbose(msg: string, data?: LogStructuredData): void;
    silly(msg: string, data?: LogStructuredData): void;
}