app-logging
Version:
Application development logs
12 lines (11 loc) • 671 B
TypeScript
export declare class Log {
info: (message: string, contextualData: any, async?: boolean) => void;
error: (message: string, contextualData: any, async?: boolean) => void;
debug: (message: string, contextualData: any, async?: boolean) => void;
critical: (message: string, contextualData: any, async?: boolean) => void;
emergency: (message: string, contextualData: any, async?: boolean) => void;
alert: (message: string, contextualData: any, async?: boolean) => void;
notice: (message: string, contextualData: any, async?: boolean) => void;
warning: (message: string, contextualData: any, async?: boolean) => void;
private executeLogs;
}