Struct env_logger::Builder
[−]
[src]
pub struct Builder { /* fields omitted */ }
Builder
acts as builder for initializing a Logger
.
It can be used to customize the log format, change the environment variable used to provide the logging directives and also set the default log level filter.
Examples
#[macro_use] extern crate log; extern crate env_logger; use std::env; use std::io::Write; use log::LevelFilter; use env_logger::Builder; fn main() { let mut builder = Builder::from_default_env(); builder.format(|buf, record| writeln!(buf, "{} - {}", record.level(), record.args())) .filter(None, LevelFilter::Info) .init(); error!("error message"); info!("info message"); }
Methods
impl Builder
[src]
impl Builder
pub fn new() -> Builder
[src]
pub fn new() -> Builder
Initializes the log builder with defaults.
NOTE: This method won't read from any environment variables.
Use the filter
and write_style
methods to configure the builder
or use from_env
or from_default_env
instead.
Examples
Create a new builder and configure filters and style:
use log::LevelFilter; use env_logger::{Builder, WriteStyle}; let mut builder = Builder::new(); builder.filter(None, LevelFilter::Info) .write_style(WriteStyle::Always) .init();
pub fn from_env<'a, E>(env: E) -> Self where
E: Into<Env<'a>>,
[src]
pub fn from_env<'a, E>(env: E) -> Self where
E: Into<Env<'a>>,
Initializes the log builder from the environment.
The variables used to read configuration from can be tweaked before passing in.
Examples
Initialise a logger reading the log filter from an environment variable
called MY_LOG
:
use env_logger::Builder; let mut builder = Builder::from_env("MY_LOG"); builder.init();
Initialise a logger using the MY_LOG
variable for filtering and
MY_LOG_STYLE
for whether or not to write styles:
use env_logger::{Builder, Env}; let env = Env::new().filter("MY_LOG").write_style("MY_LOG_STYLE"); let mut builder = Builder::from_env(env); builder.init();
pub fn from_default_env() -> Self
[src]
pub fn from_default_env() -> Self
Initializes the log builder from the environment using default variable names.
This method is a convenient way to call from_env(Env::default())
without
having to use the Env
type explicitly. The builder will use the
default environment variables.
Examples
Initialise a logger using the default environment variables:
use env_logger::Builder; let mut builder = Builder::from_default_env(); builder.init();
pub fn format<F: 'static>(&mut self, format: F) -> &mut Self where
F: Fn(&mut Formatter, &Record) -> Result<()> + Sync + Send,
[src]
pub fn format<F: 'static>(&mut self, format: F) -> &mut Self where
F: Fn(&mut Formatter, &Record) -> Result<()> + Sync + Send,
Sets the format function for formatting the log output.
This function is called on each record logged and should format the
log record and output it to the given Formatter
.
The format function is expected to output the string directly to the
Formatter
so that implementations can use the std::fmt
macros
to format and output without intermediate heap allocations. The default
env_logger
formatter takes advantage of this.
Examples
Use a custom format to write only the log message:
use std::io::Write; use env_logger::Builder; let mut builder = Builder::new(); builder.format(|buf, record| write!(buf, "{}", record.args()));
pub fn default_format(&mut self) -> &mut Self
[src]
pub fn default_format(&mut self) -> &mut Self
Use the default format.
This method will clear any custom format set on the builder.
pub fn default_format_level(&mut self, write: bool) -> &mut Self
[src]
pub fn default_format_level(&mut self, write: bool) -> &mut Self
Whether or not to write the level in the default format.
pub fn default_format_module_path(&mut self, write: bool) -> &mut Self
[src]
pub fn default_format_module_path(&mut self, write: bool) -> &mut Self
Whether or not to write the module path in the default format.
pub fn default_format_timestamp(&mut self, write: bool) -> &mut Self
[src]
pub fn default_format_timestamp(&mut self, write: bool) -> &mut Self
Whether or not to write the timestamp in the default format.
pub fn filter_module(&mut self, module: &str, level: LevelFilter) -> &mut Self
[src]
pub fn filter_module(&mut self, module: &str, level: LevelFilter) -> &mut Self
Adds a directive to the filter for a specific module.
Examples
Only include messages for warning and above for logs in path::to::module
:
use log::LevelFilter; use env_logger::Builder; let mut builder = Builder::new(); builder.filter_module("path::to::module", LevelFilter::Info);
pub fn filter_level(&mut self, level: LevelFilter) -> &mut Self
[src]
pub fn filter_level(&mut self, level: LevelFilter) -> &mut Self
Adds a directive to the filter for all modules.
Examples
Only include messages for warning and above for logs in path::to::module
:
use log::LevelFilter; use env_logger::Builder; let mut builder = Builder::new(); builder.filter_level(LevelFilter::Info);
pub fn filter(&mut self, module: Option<&str>, level: LevelFilter) -> &mut Self
[src]
pub fn filter(&mut self, module: Option<&str>, level: LevelFilter) -> &mut Self
Adds filters to the logger.
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.
Examples
Only include messages for warning and above for logs in path::to::module
:
use log::LevelFilter; use env_logger::Builder; let mut builder = Builder::new(); builder.filter(Some("path::to::module"), LevelFilter::Info);
pub fn parse(&mut self, filters: &str) -> &mut Self
[src]
pub fn parse(&mut self, filters: &str) -> &mut Self
Parses the directives string in the same form as the RUST_LOG
environment variable.
See the module documentation for more details.
pub fn target(&mut self, target: Target) -> &mut Self
[src]
pub fn target(&mut self, target: Target) -> &mut Self
Sets the target for the log output.
Env logger can log to either stdout or stderr. The default is stderr.
Examples
Write log message to stdout
:
use env_logger::{Builder, Target}; let mut builder = Builder::new(); builder.target(Target::Stdout);
pub fn write_style(&mut self, write_style: WriteStyle) -> &mut Self
[src]
pub fn write_style(&mut self, write_style: WriteStyle) -> &mut Self
Sets whether or not styles will be written.
This can be useful in environments that don't support control characters for setting colors.
Examples
Never attempt to write styles:
use env_logger::{Builder, WriteStyle}; let mut builder = Builder::new(); builder.write_style(WriteStyle::Never);
pub fn parse_write_style(&mut self, write_style: &str) -> &mut Self
[src]
pub fn parse_write_style(&mut self, write_style: &str) -> &mut Self
Parses whether or not to write styles in the same form as the RUST_LOG_STYLE
environment variable.
See the module documentation for more details.
pub fn try_init(&mut self) -> Result<(), SetLoggerError>
[src]
pub fn try_init(&mut self) -> Result<(), SetLoggerError>
Initializes the global logger with the built env logger.
This should be called early in the execution of a Rust program. Any log events that occur before initialization will be ignored.
Errors
This function will fail if it is called more than once, or if another library has already initialized a global logger.
pub fn init(&mut self)
[src]
pub fn init(&mut self)
Initializes the global logger with the built env logger.
This should be called early in the execution of a Rust program. Any log events that occur before initialization will be ignored.
Panics
This function will panic if it is called more than once, or if another library has already initialized a global logger.
pub fn build(&mut self) -> Logger
[src]
pub fn build(&mut self) -> Logger
Build an env logger.
The returned logger implements the Log
trait and can be installed manually
or nested within another logger.
Trait Implementations
impl Debug for Builder
[src]
impl Debug for Builder
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for Builder
[src]
impl Default for Builder