UNPKG

@malagu/core

Version:
10 lines 445 B
export declare const LOGGER_CONFIG = "malagu.logger"; export declare const Logger: unique symbol; export declare type LogLevel = 'verbose' | 'debug' | 'info' | 'warn' | 'error'; export interface Logger { info(message: any, context?: string): void; error(message: any, context?: string): void; warn(message: any, context?: string): void; debug(message: any, context?: string): void; } //# sourceMappingURL=logger-protocol.d.ts.map