ryanluker / vscode-coverage-gutters

Display test coverage generated by lcov and xml - works with many languages
https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters
MIT License
460 stars 88 forks source link

[#???] Adjust sentry logging to remove warnings #296

Closed ryanluker closed 3 years ago

ryanluker commented 3 years ago

Description

With the latest release there has been an increase in errors being captured that were not suppose to be (mostly anything that used the error system to log or produce a window warning).

This PR switches these warnings to be produced at the code flow spot that the issue occurs rather then bubbling the warning up through the new Error functionality and eventually into the sentry exception handler.

This should have no effect on the end user and will massively reduce the number of events going to sentry (we only want to know about issues in the extension not peoples specific usage).

Changes