From 95f30fe18c7224c3e7336b16b690f178a5ea440d Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 9 Feb 2024 10:03:52 -0500 Subject: [PATCH] Also log DEBUG+ events from aws_config --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 8069799..480f35e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,6 +68,7 @@ async fn main() -> anyhow::Result<()> { .with( Targets::new() .with_target(env!("CARGO_CRATE_NAME"), Level::TRACE) + .with_target("aws_config", Level::DEBUG) .with_target("reqwest", Level::TRACE) .with_target("tower_http", Level::TRACE) .with_default(Level::INFO),