Skip to content

Commit 4a51896

Browse files
author
Akila Tennakoon
committed
Remove debug logging
1 parent 4667e82 commit 4a51896

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/stacks/actions/ValidationWorkflowV2.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { CfnInfraCore } from '../../server/CfnInfraCore';
88
import { CfnServiceV2 } from '../../services/CfnServiceV2';
99
import { DiagnosticCoordinator } from '../../services/DiagnosticCoordinator';
1010
import { S3Service } from '../../services/S3Service';
11-
import { LoggerFactory } from '../../telemetry/LoggerFactory';
1211
import { extractErrorMessage } from '../../utils/Errors';
1312
import {
1413
waitForChangeSetValidation,
@@ -23,8 +22,6 @@ import { ValidationWorkflow } from './ValidationWorkflow';
2322
export const VALIDATION_V2_NAME = 'Enhanced Validation';
2423

2524
export class ValidationWorkflowV2 extends ValidationWorkflow {
26-
protected override readonly log = LoggerFactory.getLogger(ValidationWorkflowV2);
27-
2825
constructor(
2926
protected cfnServiceV2: CfnServiceV2,
3027
documentManager: DocumentManager,
@@ -53,8 +50,6 @@ export class ValidationWorkflowV2 extends ValidationWorkflow {
5350
try {
5451
const result = await waitForChangeSetValidation(this.cfnServiceV2, changeSetName, stackName);
5552

56-
this.log.info(result);
57-
5853
const validation = this.validationManager.get(stackName);
5954
if (validation) {
6055
validation.setPhase(result.phase);

0 commit comments

Comments
 (0)