vidit-sh / redux-sentry-middleware

Redux middleware for propagating Redux state/actions to use with new @sentry/browser and @sentry/node.
79 stars 16 forks source link

redux state not serialised correctly #17

Closed ebaioni closed 3 years ago

ebaioni commented 4 years ago

Hi there, first of all, thank you for building this middleware. I'm having an issue in which my redux state in not serialised correctly past the first level. Any idea what I am missing?

Screen Shot 2020-02-19 at 9 26 46 am
kltchnko commented 4 years ago

@ebaioni Hi, I had the same issue. It is about your init settings of Sentry SDK. Firslty, I tried to add ExtraErrorData integration but it didn't help. After that I updated "@sentry/browser" to 5.12.4 and added normalizeDepth: 10 to Sentry.init() options and it worked! See 2417