-
-
Notifications
You must be signed in to change notification settings - Fork 80
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
Log raw lint evaluation output values. #199
Conversation
Here's an example of what the current implementation prints out:
|
I think it could make sense to include it with "extra verbosity" / trace
|
I tested this with |
Issue #193 was difficult to triage in part because not all of the values output by the lint query were included in the error message: the error message accidentally omitted the method name with the reported error, and only reported the type on which that method was defined.
It would make future triage easier if all values output by the lint query were made available together with their corresponding error messages.
This is "debug"-level logging output, extremely verbose even by the standards of the current
--verbose
flag. Should we add it to--verbose
anyway, or should we add a new even-more-verbose setting (e.g.--debug
or--verbose --verbose
, whatever is better CLI design) and only output it in that case?