Skip to content

Commit b977e54

Browse files
committed
Add detailed logging around ExecuteChangeSetCommand
1 parent 52078c9 commit b977e54

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/deploy.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,14 +254,17 @@ export async function updateStack(
254254
}
255255

256256
core.debug('Executing CloudFormation change set')
257+
core.info(`About to execute change set: ${params.ChangeSetName} on stack: ${params.StackName}`)
257258
await cfn.send(
258259
new ExecuteChangeSetCommand({
259260
ChangeSetName: params.ChangeSetName,
260261
StackName: params.StackName
261262
})
262263
)
264+
core.info('ExecuteChangeSetCommand completed successfully')
263265

264266
core.debug('Updating CloudFormation stack')
267+
core.info('Starting waiter for stack operation completion')
265268
await waitUntilStackOperationComplete(
266269
{ client: cfn, maxWaitTime: 43200, minDelay: 10 },
267270
{

0 commit comments

Comments
 (0)