From b6ea31654a8165bb374053378447988b52ba35ce Mon Sep 17 00:00:00 2001 From: Helio Frota <00hf11@gmail.com> Date: Thu, 6 Feb 2025 14:15:53 -0300 Subject: [PATCH] chore: Remove actix_web_prom from RUST_LOG --- common/infrastructure/src/otel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/infrastructure/src/otel.rs b/common/infrastructure/src/otel.rs index bceaa5e0..c57ca38d 100644 --- a/common/infrastructure/src/otel.rs +++ b/common/infrastructure/src/otel.rs @@ -200,7 +200,7 @@ fn init_otlp_tracing(name: &str) { } fn init_no_tracing() { - const RUST_LOG: &str = "info,actix_web_prom=error"; + const RUST_LOG: &str = "info"; let filter = EnvFilter::try_from_default_env().unwrap_or_else(|_| { eprintln!("RUST_LOG is unset, using default: '{RUST_LOG}'");