mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Prevented handled errors from being sent to Sentry (#18790)
no refs As part of the reduce Sentry noise work we decided to temporarily prevent the submission of "handled" errors to Sentry. This is a temporary measure to reduce noise while we work on improving the quality of the error reporting / alerting
This commit is contained in:
parent
67992d941a
commit
766374a44a
1 changed files with 6 additions and 0 deletions
|
@ -185,6 +185,12 @@ export default Route.extend(ShortcutsRoute, {
|
|||
event.tags = event.tags || {};
|
||||
event.tags.shown_to_user = event.tags.shown_to_user || false;
|
||||
event.tags.grammarly = !!document.querySelector('[data-gr-ext-installed]');
|
||||
|
||||
// Do not report "handled" errors to Sentry
|
||||
if (event.tags.shown_to_user === true) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return event;
|
||||
},
|
||||
// TransitionAborted errors surface from normal application behaviour
|
||||
|
|
Loading…
Add table
Reference in a new issue