Struct env_logger::filter::Builder [−][src]
pub struct Builder { /* fields omitted */ }
Expand description
A builder for a log filter.
It can be used to parse a set of directives from a string before building
a Filter
instance.
Example
use env_logger::filter::Builder;
let mut builder = Builder::new();
// Parse a logging filter from an environment variable.
if let Ok(rust_log) = env::var("RUST_LOG") {
builder.parse(&rust_log);
}
let filter = builder.build();
Implementations
Adds a directive to the filter for a specific module.
Adds a directive to the filter for all modules.
Adds a directive to the filter.
The given module (if any) will log at most the specified level provided. If no module is provided then the filter will apply to all log messages.
Parses the directives string.
See the Enabling Logging section for more details.