I'm trying to log a custom message to Sentry and I'm doing it using
Sentry.captureMessage("This is a test");
When this function is executed on my application I can see in the Dev Tools Network tab that the request is executed successfully:
And it also returns an event ID:
{"id":"b1db5de34d6048b38f76077ed1315fe9"}
The problem is that when I check the issues tab on the Sentry project, the message is nowhere to be found. There are other issues for the application but these are things like unhandled errors.
Are there some steps I need to follow to log messages from the captureMessage function? Can I just immediately go to the event since I have the event ID?