Skip to content

Commit

Permalink
Score triaged defects: Improve error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
manuroe committed Apr 26, 2024
1 parent b65037c commit 41a5ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/score-triaged-defects.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ async function setNewScore(scoreItem, projectFieldId, fieldValue) {
console.log(issue.number + " - " + " Updating score from " + (scoreItem.score ? scoreItem.score.number : "null") + " to " + computedScore + " - " + issue.title);

setNewScore(scoreItem, projectFieldId, computedScore).catch(error => {
console.error(" Error updating score: " + error);
console.error("Error updating score for issue " + issue.number + ": " + error);
});
}
});
Expand Down

0 comments on commit 41a5ac6

Please sign in to comment.