@@ -177,6 +177,7 @@ export class DiffModel {
177177 }
178178
179179 const changedFiles = parsePatch ( diffContents )
180+ getLogger ( ) . info ( 'CodeTransformation: parsed patch file successfully' )
180181 // path to the directory containing copy of the changed files in the transformed project
181182 const pathToTmpSrcDir = this . copyProject ( pathToWorkspace , changedFiles )
182183 transformByQState . setProjectCopyFilePath ( pathToTmpSrcDir )
@@ -401,6 +402,7 @@ export class ProposedTransformationExplorer {
401402 pathToArchive
402403 )
403404
405+ getLogger ( ) . info ( 'CodeTransformation: downloaded results successfully' )
404406 // Update downloaded artifact size
405407 exportResultsArchiveSize = ( await fs . promises . stat ( pathToArchive ) ) . size
406408
@@ -532,6 +534,7 @@ export class ProposedTransformationExplorer {
532534
533535 vscode . commands . registerCommand ( 'aws.amazonq.transformationHub.reviewChanges.acceptChanges' , async ( ) => {
534536 telemetry . codeTransform_submitSelection . run ( ( ) => {
537+ getLogger ( ) . info ( 'CodeTransformation: accepted changes' )
535538 diffModel . saveChanges ( )
536539 telemetry . record ( {
537540 codeTransformSessionId : CodeTransformTelemetryState . instance . getSessionId ( ) ,
@@ -585,6 +588,7 @@ export class ProposedTransformationExplorer {
585588
586589 vscode . commands . registerCommand ( 'aws.amazonq.transformationHub.reviewChanges.rejectChanges' , async ( ) => {
587590 await telemetry . codeTransform_submitSelection . run ( async ( ) => {
591+ getLogger ( ) . info ( 'CodeTransformation: rejected changes' )
588592 diffModel . rejectChanges ( )
589593 await reset ( )
590594 telemetry . record ( {
0 commit comments