Interface DataAPIExplicitLoggingConfig

The most explicit way to configure logging, with the ability to set both events and specific outputs.

Settings the emits field to [] will disable logging for the specified events.

See DataAPIClientEventMap & DataAPILoggingConfig for much more info.

interface DataAPIExplicitLoggingConfig {
    emits: OneOrMany<DataAPILoggingOutput>;
    events: OneOrMany<DataAPILoggingEvent>;
}

Properties

Properties