🛈 Note: This is pre-release documentation for the upcoming tracing 0.2.0 ecosystem.

For the release documentation, please see docs.rs, instead.

tracing_log::env_logger

Function try_init

Source
pub fn try_init() -> Result<(), SetLoggerError>
Available on crate feature env_logger only.
Expand description

Attempts to initialize the global logger with an env logger configured to emit tracing events.

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.