Skip to content

Commit 72f2ad6

Browse files
authored
fix: remove debug loging in opensearch(#477)
1 parent 899503f commit 72f2ad6

File tree

6 files changed

+599
-605
lines changed

6 files changed

+599
-605
lines changed

framework/.projen/tasks.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

framework/package.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

framework/src/consumption/lib/opensearch/opensearch.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -202,21 +202,12 @@ export class OpenSearchCluster extends TrackedConstruct {
202202

203203
const azCount = subnets?.subnets?.length || 1;
204204

205-
if (subnets) {
206-
console.log(' vpc subnet length ' + subnets!.subnets!.length);
207-
console.log('az count ' + azCount);
208-
} else {
209-
console.log('no vpc');
210-
console.log('az count ' + azCount);
211-
}
212-
213205
let zoneAwareness;
214206
if (azCount === undefined || azCount === 1) {
215207
zoneAwareness = false;
216208
} else {
217209
zoneAwareness = true;
218210
}
219-
console.log('zoneAwareness ' + zoneAwareness);
220211

221212
const domainProps : DomainProps = {
222213
domainName: props.domainName,

0 commit comments

Comments
 (0)