Sentry.io custom error titles
Should be easy and straightforward, yet I had to find a (not so elegant) workaround.
Sentry.init({
...
beforeSend: function(event, hint) {
...
event.exception.values[0].type = 'My-Custom-Title';
return event;
}
});
Basically someone sa...
lines.hashnode.dev1 min read