Logging interface.

interface Logger {
    error(message: string, err?: any): void;
    warn(message: string, err?: any): void;
}

Methods

Methods