//! Tracing/logging initialization.
//!
//! Must be called once, at startup, before any `tracing::info!`/`warn!`/etc.
//! calls will produce output.
use ;
/// Initialize the global tracing subscriber.
///
/// Log level is controlled by the `RUST_LOG` env var, e.g.:
/// RUST_LOG=info cargo run
/// RUST_LOG=pipey=debug,actix_web=info cargo run
///
/// Falls back to "info" if RUST_LOG is not set.