Unverified Commit 2fa4cdcb authored by Jon Gjengset's avatar Jon Gjengset Committed by GitHub
Browse files

Avoid info-level log about unimportant event (#1696)

Loading regions happens fairly frequently, and isn't an exceptional event, so logging it at info level seems excessive.
parent ce1ffa41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ impl ImdsRegionProvider {
        let client = self.client.client().await.ok()?;
        match client.get(REGION_PATH).await {
            Ok(region) => {
                tracing::info!(region = % region, "loaded region from IMDS");
                tracing::debug!(region = % region, "loaded region from IMDS");
                Some(Region::new(region))
            }
            Err(err) => {