Reduce log level for debug message

This commit is contained in:
daz 2023-07-07 13:49:10 -06:00
parent 4c9c435d2f
commit d0ffeaa089
No known key found for this signature in database

View file

@ -150,7 +150,7 @@ export function constructJobCorrelator(workflow: string, jobId: string, matrixJs
} }
function describeMatrix(matrixJson: string): string { function describeMatrix(matrixJson: string): string {
core.info(`Got matrix json: ${matrixJson}`) core.debug(`Got matrix json: ${matrixJson}`)
const matrix = JSON.parse(matrixJson) const matrix = JSON.parse(matrixJson)
if (matrix) { if (matrix) {
return Object.values(matrix).join('-') return Object.values(matrix).join('-')