mrpmorris / Fluxor

Fluxor is a zero boilerplate Flux/Redux library for Microsoft .NET and Blazor.
MIT License
1.26k stars 145 forks source link

Redux Dev Tools Trace Capability? #262

Closed curt-w closed 2 years ago

curt-w commented 2 years ago

Is there support to enable the trace flag when using Redux Dev Tools? I cannot find any references to this.

I am having issue troubleshooting the origin of an action and believe the trace functionality would be useful.

Trace flag described: https://dev.to/finallynero/redux-action-stack-trace-1m0d https://blog.logrocket.com/redux-devtools-tips-tricks-for-faster-debugging/

mrpmorris commented 2 years ago

It looks like a good idea, I'll keep it in mind for when I have some free time again.

For now, write a middleware that writes out the StackTrace whenever an action is dispatched.

mrpmorris commented 2 years ago

Added in 5.2

Thanks for making me aware of it!