//! Structured JSON tracing setup via `tracing` + `tracing-subscriber`.
//!
//! All diagnostic output goes to stderr as structured JSON. stdout is the data
//! channel exclusively. Control verbosity with `RUST_LOG`.
use EnvFilter;
/// Initialise the tracing subscriber for JSON-formatted stderr logging.
///
/// Respects `RUST_LOG` for verbosity control (default: `info`).