I have an action which is dispatched every one second. Its dispatched from a web socket connection which receives data every one second.
This causes my devtool to be filled with a lot of these actions and therefore makes debugging hard for other actions and stuff.
Is there a way to filter out all this "noise" from the logger
I tried doing the following:
const composeEnhancers =
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({
actionsBlacklist: 'METER_DATA_RECEIVE'
}) || compose;
but this not only filters out the action from the logger but also from the application. i.e, it isn't dispatched so its as good as not calling the action which is what I don't want.
In other words, I want the actions dispatched but not logged in the redux dev tool