Unverified Commit 78f0318b authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Change `provide_credentials` span to debug (#1952)

parent 9a6de1f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ impl DefaultCredentialsChain {
    async fn credentials(&self) -> credentials::Result {
        self.0
            .provide_credentials()
            .instrument(tracing::info_span!("provide_credentials", provider = %"default_chain"))
            .instrument(tracing::debug_span!("provide_credentials", provider = %"default_chain"))
            .await
    }
}