#Is there a way to get a text representation of the schedule for a given bevy app?

10 messages · Page 1 of 1 (latest)

hidden kelp
#

We want to log the schedule to a rolling file to help us track down some system order related bugs that are intermittent

zealous tide
#

you can turn on the ambiguity checker to get a list of systems that are reading/writing to the same data, but don't have a defined ordering

#

there is also bevy_mod_debugdump that outputs the schedule in .dot format

hidden kelp
#

Is there a way to get all Schedule label in an app?

zealous tide
#

theres the extract and render schedules too which are in separate worlds in the corresponding sub apps

glass ingot
#

I believe this is a planned feature btw

hidden kelp
#

Hmm, the debugdump methods all take app, there's no way to get that after .run is called right?

zealous tide
#

yeah

hidden kelp
#

Ahh dang, no pretty way to do it then