esl01-dev-logger 0.3.0

Configure tracing logs in dev environment (ex. tests).
Documentation

Convenient env_logger for testing purpose.

Example

// In lib.rs:
#[cfg(test)]
dev_logger::init!();

// In test function:
tracing::info!(name = "message");

// Set RUST_LOG=info and run the test.