Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error list truncated for erroneous builds #8829

Closed
tSchubes opened this issue Apr 14, 2020 · 2 comments
Closed

Error list truncated for erroneous builds #8829

tSchubes opened this issue Apr 14, 2020 · 2 comments
Labels

Comments

@tSchubes
Copy link

Only the first error of an erroneous build is output to the console leaving the developer without all of the relevant details required to troubleshoot. Additional errors are intentionally truncated here:

// Only keep the first error. Others are often indicative
// of the same problem, but confuse the reader with noise.
if (messages.errors.length > 1) {
messages.errors.length = 1;
}

Second and subsequent errors are most certainly not "noise". They provide vital insight in to the cause of problems and save developers from chasing their tails trying to troubleshoot failures with limited detail.

PR incoming.

@stale
Copy link

stale bot commented May 15, 2020

This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs.

@stale stale bot added the stale label May 15, 2020
@stale
Copy link

stale bot commented May 20, 2020

This issue has been automatically closed because it has not had any recent activity. If you have a question or comment, please open a new issue.

@stale stale bot closed this as completed May 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant