Skip to content

Commit

Permalink
test: log credential resolution debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Oct 30, 2024
1 parent dca51da commit f011e87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/e2e/get-integ-test-resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ exports.getIntegTestResources = async () => {
const region = "us-west-2";
const cloudformation = new CloudFormationClient({
region,
logger: {
...console,
trace() {},
debug(...args) {
if (String(args[0]).startsWith("endpoints")) {
return;
}
console.debug(...args);
},
info() {},
},
});
const stackName = "SdkReleaseV3IntegTestResourcesStack";

Expand Down

0 comments on commit f011e87

Please sign in to comment.