Skip to content

Commit f011e87

Browse files
committed
test: log credential resolution debug
1 parent dca51da commit f011e87

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/e2e/get-integ-test-resources.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ exports.getIntegTestResources = async () => {
1010
const region = "us-west-2";
1111
const cloudformation = new CloudFormationClient({
1212
region,
13+
logger: {
14+
...console,
15+
trace() {},
16+
debug(...args) {
17+
if (String(args[0]).startsWith("endpoints")) {
18+
return;
19+
}
20+
console.debug(...args);
21+
},
22+
info() {},
23+
},
1324
});
1425
const stackName = "SdkReleaseV3IntegTestResourcesStack";
1526

0 commit comments

Comments
 (0)