Interface LoggerConfig

Logger transports configuration interface

interface LoggerConfig {
    console?: ConsoleTransportConfig;
    file?: FileTransportConfig;
    fluentd?: FluentdTransportConfig;
}

Properties