Add logs around status report telemetry in init-post step

This commit is contained in:
Angela P Wen 2025-04-03 14:37:27 +02:00
parent e13fe0dd2d
commit 92864f48b0
3 changed files with 5 additions and 1 deletions

View file

@ -106,7 +106,9 @@ async function runWrapper() {
...uploadFailedSarifResult,
job_status: initActionPostHelper.getFinalJobStatus(),
};
logger.info("Sending status report for init-post step.");
await sendStatusReport(statusReport);
logger.info("Status report sent for init-post step.");
}
}