Fallible systems spamming warning log statements #17144
Labels
A-ECS
Entities, components, systems, and events
C-Bug
An unexpected or incorrect behavior
D-Straightforward
Simple bug fixes and API improvements, docs, test and examples
Bevy version
0.15
[Optional] Relevant system information
Arch Linux
What you did
I'm using the
RenderPlugin
without theWindowsPlugin
(Want to use GPU for a CLI tool)What went wrong
I'm getting this message spammed in my logs each frame:
According to the news posting, these warnings are supposed to happen only once at most.
Additional information
When I add the window feature and the event for WindowClosing, it changes to WindowResizing, and when I add that, it complains about missing resources for Render's
camera_system
. I could probably just add the WindowsPlugin or add all these resources, but since I don't actually want to create Windows it seems like a waste.If I truly want the warnings gone I might create a PR in the future to make bevy_render's bevy_window dependency optional (since it is such a niche case I don't think it would be worth taking the core bevy developers' time), but I wanted to file a bug report since the fallible system warning being repeated ad-nauseum seems to be off spec.
The text was updated successfully, but these errors were encountered: