Another use-case is to log actions with a different format e.g.
{
ID: 123,
...
}
At the moment we have to filter all the breadcrumbs. It would be great if redux-sentry-middleware has such feature from the box. So I have added breadcrumbMessageFromAction which allows defining a function to change a message of action.
Hello, @vidit-sh
Sometimes it's necessary to use the different message of action breadcrumb instead of action.type.
The most common example is to process batched actions e.g:
Another use-case is to log actions with a different format e.g.
At the moment we have to filter all the breadcrumbs. It would be great if redux-sentry-middleware has such feature from the box. So I have added
breadcrumbMessageFromAction
which allows defining a function to change a message of action.