We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.8 with trace tab looks amazing!
But what if we could see logs grouped not by a tick but grouped by event with all side effects this event run
as example
const event1 = createEvent(); const event2 = createEvent(); const effect = createEffect(() => {}); forward({ from: event1, to: effect }) event1(); event2()
show something like this
event `event1` triggered effect `effect` triggered event `effect.done` triggered event `event2` triggered
The text was updated successfully, but these errors were encountered:
Looks like it can result in a very long trace in some cases 🤔 e.g. long-polling cycles or something like that
Should this be somehow detected or filtered?
event `event1` triggered 25 times: effect `effect` triggered event `effect.done` triggered -> cycle: effect 'effect' triggered
Sorry, something went wrong.
No branches or pull requests
Version 0.8 with trace tab looks amazing!
But what if we could see logs grouped not by a tick but grouped by event with all side effects this event run
as example
show something like this
The text was updated successfully, but these errors were encountered: