From 6621b4ec6733b7d28961d5b4a52fd561e65b3d82 Mon Sep 17 00:00:00 2001 From: OrthogonalStar Date: Sat, 16 Dec 2023 18:01:57 -0500 Subject: [PATCH] Properly fixed tracing target to be this package --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ca2f1e8..d7e4ec5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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();