diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 65d0fcb147..a807184c47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,6 +96,7 @@ jobs: # https://github.com/rust-lang/cargo/issues/10280 CARGO_NET_GIT_FETCH_WITH_CLI: "true" RUST_BACKTRACE: "1" + RUST_LOG: debug AWS_DEFAULT_REGION: "us-east-1" AWS_ACCESS_KEY_ID: deltalake AWS_SECRET_ACCESS_KEY: weloverust diff --git a/crates/aws/src/credentials.rs b/crates/aws/src/credentials.rs index fcfdf1a8d1..2da9adfa4c 100644 --- a/crates/aws/src/credentials.rs +++ b/crates/aws/src/credentials.rs @@ -222,6 +222,8 @@ mod tests { #[tokio::test] async fn test_options_credentials_provider_session_token() { + let _ = pretty_env_lgoger::try_init(); + let options = StorageOptions(hashmap! { constants::AWS_ACCESS_KEY_ID.to_string() => "test_id".to_string(), constants::AWS_SECRET_ACCESS_KEY.to_string() => "test_secret".to_string(),