Skip to content

Sentry only sends an error only one time #5613

Answered by AbhiPrasad
jrefusta asked this question in Q&A
Discussion options

You must be logged in to vote

Hey @jrefusta. If you enable debug: true in your Sentry.init, you can see debug logs on what is happening to the SDK.

In this case, Sentry's Dedupe integration is making sure duplicate messages are not being sent to Sentry, to help save quota:

if (_isSameMessageEvent(currentEvent, previousEvent)) {
return true;
}

Sentry is not built to be a logging platform, but if you want to make sure unique messages are captured you can disable the dedupe integration.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@jrefusta
Comment options

Answer selected by jrefusta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants