I am using react-native
library for sentry, doing Sentry.captureMessage(message, Sentry.Severity.Warning)
. I can't find any place in the dashboard, where this message would show. If I call Sentry.captureException
it does show in issues, but I don't want to flood it with warnings. Where in the dashboard can I see whether the message is received?
I am using react-native
library for sentry, doing Sentry.captureMessage(message, Sentry.Severity.Warning)
. I can't find any place in the dashboard, where this message would show. If I call Sentry.captureException
it does show in issues, but I don't want to flood it with warnings. Where in the dashboard can I see whether the message is received?
1 Answer
Reset to default 5You should get it in the issues
section, as long with the other issues.
I executed that code : Sentry.captureMessage('this is an error message', Sentry.Severity.Warning);
1. My issues list :
2. Inside the 'message' issue:
Important: check in your browser network console, if the api/<id>/store/?sentry_key...
call exists.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745126462a4612717.html
评论列表(0条)