Struct env_logger::Env [−][src]
pub struct Env<'a> { /* fields omitted */ }
Expand description
Set of environment variables to configure from.
Default environment variables
By default, the Env
will read the following environment variables:
RUST_LOG
: the level filterRUST_LOG_STYLE
: whether or not to print styles with records.
These sources can be configured using the builder methods on Env
.
Implementations
Specify an environment variable to read the filter from.
Specify an environment variable to read the filter from.
If the variable is not set, the default value will be used.
Use the default environment variable to read the filter from.
If the variable is not set, the default value will be used.
Specify an environment variable to read the style from.
Specify an environment variable to read the style from.
If the variable is not set, the default value will be used.
Use the default environment variable to read the style from.
If the variable is not set, the default value will be used.