Struct amethyst::LoggerConfig[][src]

pub struct LoggerConfig {
    pub use_colors: bool,
    pub level_filter: LevelFilter,
}

Logger configuration object.

Fields

Whether to use color output when logging to the terminal or not.

Sets the overarching level filter for the logger.

Trait Implementations

impl Clone for LoggerConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for LoggerConfig
[src]

impl Default for LoggerConfig
[src]

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

Auto Trait Implementations