//! Tracing utilities for the library
// Re-export the external tracing crate
pubuse::tracing::*;/// Initialize tracing for the application.
/// Only initializes if RUST_ENV is set to "DEBUG"
pubfninit_tracing(){// Only initialize tracing if RUST_ENV is set to "DEBUG"
ifletOk(env)=std::env::var("RUST_ENV"){if env.to_lowercase()=="debug"{let_=::tracing_subscriber::fmt::try_init();}}}