-
Notifications
You must be signed in to change notification settings - Fork 201
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
Indicate cause of failure when execution is unsuccessful #981
Comments
Thanks for reporting Tim, I'm marking as help wanted, I'd appreciate if someone can figure out why we're swallowing this exception and send a PR to fix this. |
Another error that gets swallowed is when running a JavaScript test module without JSDOM installed. When I ran
|
Hey @jvican I'm interested in investigating this one and trying to make a fix. I'm totally new to contributing to open source but have been working with scala for a couple years now so should be able to figure out what to do. |
So I had a look and as far as I can see this is the expected behaviour, in BloopLogger we have:
Which seems to explain why verbose has to be on to get the stack trace. Let me know if I'm way off the mark, if not I'm happy to send the PR to change this! |
Hey @KieranCTaylor, happy to see you're interested in contributing! |
Hey @jvican I just had another look at this now. I'm not sure what you mean by As for the first example where it's coming out as a debug message, I can't actually find where this is being output. I thought at first maybe it was in this pattern matcher in
but if that were the case it should be prefixed by the input gobbler message. Sorry I couldn't be more help and thank you for your guidance. If there's some other pointers I'd be happy to keep looking. |
I meant by default, which means verbose is not enabled. In the code snippet you quote, could we perhaps make
Do you mean this?
|
@jvican OK perfect I will drop you a message on gitter |
While debugging some local test failures (tindzk/seed#31), we noticed that Bloop does not report any errors to stderr when the Node.js process could not be started.
However, when passing in
--verbose
, the following stack trace is visible:The text was updated successfully, but these errors were encountered: