Struct log4rs::config::Logger [] [src]

pub struct Logger {
    // some fields omitted
}

Configuration for a logger.

Methods

impl Logger
[src]

fn builder() -> LoggerBuilder

Creates a new LoggerBuilder with the specified name and level.

There are initially no appenders attached and additive is true.

fn name(&self) -> &str

Returns the name of the logger.

fn level(&self) -> LogLevelFilter

Returns the minimum level of log messages that the logger will accept.

fn appenders(&self) -> &[String]

Returns the list of names of appenders that will be attached to the logger.

fn additive(&self) -> bool

Determines if appenders of parent loggers will also be attached to this logger.

Trait Implementations

impl Debug for Logger
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.