[][src]Struct flexi_logger::LogSpecBuilder

pub struct LogSpecBuilder { /* fields omitted */ }

Builder for LogSpecification.

Example

Use the reconfigurability feature and build the log spec programmatically.

use flexi_logger::{Logger, LogSpecBuilder};
use log::LevelFilter;

fn main() {
    // Build the initial log specification
    let mut builder = LogSpecBuilder::new();  // default is LevelFilter::Off
    builder.default(LevelFilter::Info);
    builder.module("karl", LevelFilter::Debug);

    // Initialize Logger, keep builder alive
    let mut logger_reconf_handle = Logger::with(builder.build())
        // your logger configuration goes here, as usual
        .start_reconfigurable()
        .unwrap_or_else(|e| panic!("Logger initialization failed with {}", e));

    // ...

    // Modify builder and update the logger
    builder.default(LevelFilter::Error);
    builder.remove("karl");
    builder.module("emma", LevelFilter::Trace);

    logger_reconf_handle.set_new_spec(builder.build());

    // ...
}

Methods

impl LogSpecBuilder
[src]

pub fn new() -> LogSpecBuilder
[src]

Creates a LogSpecBuilder with all logging turned off.

pub fn from_module_filters(module_filters: &[ModuleFilter]) -> LogSpecBuilder
[src]

Creates a LogSpecBuilder from given module filters.

pub fn default(&mut self, lf: LevelFilter) -> &mut LogSpecBuilder
[src]

Adds a default log level filter, or updates the default log level filter.

pub fn module<M: AsRef<str>>(
    &mut self,
    module_name: M,
    lf: LevelFilter
) -> &mut LogSpecBuilder
[src]

Adds a log level filter, or updates the log level filter, for a module.

pub fn remove<M: AsRef<str>>(&mut self, module_name: M) -> &mut LogSpecBuilder
[src]

Adds a log level filter, or updates the log level filter, for a module.

pub fn finalize(self) -> LogSpecification
[src]

Creates a log specification without text filter.

pub fn finalize_with_textfilter(self, tf: Regex) -> LogSpecification
[src]

Creates a log specification with text filter.

pub fn build(&self) -> LogSpecification
[src]

Creates a log specification without being consumed.

pub fn build_with_textfilter(&self, tf: Option<Regex>) -> LogSpecification
[src]

Creates a log specification without being consumed, optionally with a text filter.

Trait Implementations

impl Clone for LogSpecBuilder
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for LogSpecBuilder
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T