use tracing_subscriber::fmt::format::FmtSpan;
pub fn setup(env_filter: &str) {
tracing_subscriber::fmt()
.with_file(true)
.with_line_number(true)
.with_span_events(FmtSpan::NEW)
.with_target(false)
.with_env_filter(env_filter)
.compact()
.init();
}
pub fn setup_for_cli(env_filter: &str) {
tracing_subscriber::fmt()
.with_target(false)
.with_env_filter(env_filter)
.without_time()
.compact()
.init();
}