Interface LogEventEnricher

Log event enricher interface An enricher can add additional properties to a log event before it is written to a sink

interface LogEventEnricher {
    enrich(event: LogEvent): void;
}

Implemented by

Methods

Methods