Struct sloggers::file::FileLoggerConfig [] [src]

pub struct FileLoggerConfig {
    pub level: Severity,
    pub format: Format,
    pub timezone: TimeZone,
    pub path: PathBuf,
}

The configuration of FileLoggerBuilder.

Fields

Log level.

Log record format.

Time Zone.

Log file path.

Trait Implementations

impl Debug for FileLoggerConfig
[src]

Formats the value using the given formatter.

impl Default for FileLoggerConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for FileLoggerConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Config for FileLoggerConfig
[src]

Logger builder.

Makes a logger builder associated with this configuration.