-
Notifications
You must be signed in to change notification settings - Fork 79
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
Debug.log output prints to STDOUT instead of STDERR #365
Comments
Nah, that's what shell redirects are for. Separating output seems reasonable. |
I see a few ways to go about this:
Thoughts? |
May I bump? @mgold and @rtfeldman are any of these approaches worth investigating further? |
I have no preferences on implementation. |
This is particularly a problem with the JUnit formatting as it means any
Debug.log
is included in the head of the JUnit output, making it invalid xml.Steps to reproduce; write a test case with
Debug.log
, and invoke elm-test with JUnit reporter redirected to an xml file.If Debug.log went to STDERR it would not be redirected to the file. Alternatively allow Junit reporter to specify a file and only output the test results to the file.
The text was updated successfully, but these errors were encountered: