chore: reduce the log verbosity for symphonia#273
chore: reduce the log verbosity for symphonia#273orhun wants to merge 1 commit intofishfolk:mainfrom
Conversation
|
Do you have any idea why lots of the messages just say Some of them have the module, like this one: But a lot of them don't, specifically from symphonia and WGPU it seems. Apparently you were still able to exclude symphonia in the log filter. I think I want to exclude some of the more verbose WGPU messages, too, ( which apparently popped up after overriding the Bevy log filter ), but it's hard to tell which targets to exclude when they just show |
|
I'm not really sure, maybe some stripping/overriding happens along the way due to having so many layers. I looked around the Let me know if you find out why, I'm also curious 🐻 |
|
It works for me. .add_plugins(
DefaultPlugins
.set(bevy::log::LogPlugin {
filter: "wgpu=error,naga=warn,symphonia=warn".to_string(),
..default()
}),
) |
see fishfolk/jumpy#873