Type alias LogReporterOptions<T>

LogReporterOptions<T>: {
    filter?: LogFilter;
    formatter?: LogFormatter<T>;
    id?: string;
}

Type Parameters

  • T = any

Type declaration

  • Optional filter?: LogFilter

    Specifies a filter to determine should the log be written.

  • Optional formatter?: LogFormatter<T>

    Specifies the formatter to be used by the reporter. Using this you can customize how the reporter writes the log entry.

  • Optional id?: string

Generated using TypeDoc