Skip to content

Commit

Permalink
Additional debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
muzfuz committed Jul 6, 2023
1 parent e045324 commit 86aa73c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function runTask(ecs, clusterName, taskDefArn, waitForMinutes) {
if (securityGroupIds != "") {
awsvpcConfiguration["securityGroups"] = securityGroupIds.split(',')
}

const runTaskResponse = await ecs.runTask({
startedBy: startedBy,
cluster: clusterName,
Expand Down Expand Up @@ -373,6 +373,7 @@ async function run() {
// Register the task definition or use passed in ARN
let taskDefArn;
if (shouldUseTaskARN) {
core.debug(`Using pre-existing task definition: ${taskDefinitionFile}`)
taskDefArn = taskDefinitionFile;
} else {
core.debug('Registering the task definition');
Expand Down

0 comments on commit 86aa73c

Please sign in to comment.