use tracing::{debug, info, warn};
fn main() {
let _guard = telemetry_subscribers::TelemetryConfig::new("my_app")
.with_env()
.init();
info!(a = 1, "This will be INFO.");
debug!(a = 2, "This will be DEBUG.");
warn!(a = 3, "This will be WARNING.");
panic!("This should cause error logs to be printed out!");
}