Properly fixed tracing target to be this package

This commit is contained in:
OrthogonalStar 2023-12-16 18:01:57 -05:00
parent 9a44a77120
commit 6621b4ec67

View file

@ -6,7 +6,7 @@ async fn main() {
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env()
.unwrap_or_else(|_| "with_axum_htmx_askama=debug".into()),
.unwrap_or_else(|_| "achubb_backend".into()),
)
.with(tracing_subscriber::fmt::layer())
.init();