Skip to content

Commit

Permalink
ci: include stack trace in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Mar 26, 2024
1 parent 1b0eda9 commit e61bbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/validate-sgid-index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ for (const row of rows) {

changed = changed || checksChanged;
} catch (error) {
recordError(error.message, row);
recordError(`message: ${error.message} | stack: ${error.stack}`, row);
}

if (changed) {
Expand Down

0 comments on commit e61bbd1

Please sign in to comment.