Skip to content

Commit

Permalink
doc(inbound-filters): Disclaimer about obfuscated exceptions (#80526)
Browse files Browse the repository at this point in the history
Exception names are obfuscated by ProGuard, so Relay cannot filter them.
  • Loading branch information
jjbayer authored Nov 12, 2024
1 parent dee5394 commit dcc6c6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ describe('ProjectFilters', function () {

expect(
await screen.findByText(
"Minidumps, errors in the minified production build of React, and Internet Explorer's i18n errors cannot be filtered by message."
"Minidumps, obfuscated or minified exceptions (ProGuard, errors in the minified production build of React), and Internet Explorer's i18n errors cannot be filtered by message."
)
).toBeInTheDocument();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ function CustomFilters({project, disabled}: {disabled: boolean; project: Project
{hasFeature && project.options?.['filters:error_messages'] && (
<PanelAlert type="warning" data-test-id="error-message-disclaimer">
{t(
"Minidumps, errors in the minified production build of React, and Internet Explorer's i18n errors cannot be filtered by message."
"Minidumps, obfuscated or minified exceptions (ProGuard, errors in the minified production build of React), and Internet Explorer's i18n errors cannot be filtered by message."
)}
</PanelAlert>
)}
Expand Down

0 comments on commit dcc6c6a

Please sign in to comment.