Interface LoggerConfig

Interface defining the configuration for each Logger instance.

interface LoggerConfig {
    appenderNames: string[];
    level: string;
    loggerName: string;
}

Properties

appenderNames: string[]

The name of each Appender that log entries will be sent to.

level: string

The name of the lowest level to be logged.

loggerName: string

The name of the Logger instance for which this configuration refers. If left blank, this configuration will be used for all Logger instances that don't have a defined configuration.