Skip to content

Commit

Permalink
Fix more warning spam
Browse files Browse the repository at this point in the history
  • Loading branch information
janhohenheim committed Sep 7, 2024
1 parent 4237455 commit 2d4a64c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,16 @@ impl Plugin for AppPlugin {
..default()
})
.set(LogPlugin {
// Blenvy's alpha currently logs debug messages under the info level, so we disable that in general
// The ronstring_to_reflect_component is reporting a warning for `components_meta`, which is exported by mistake.
filter: "blenvy=warn,blenvy::components::ronstring_to_reflect_component=error"
.to_string(),
// - Blenvy's alpha currently logs debug messages under the info level, so we disable that in general.
// - The ronstring_to_reflect_component is reporting a warning for `components_meta`, which is exported by mistake.
// - avian3d::prepare is reporting that dynamic rigid bodies are lacking mass, which is because it takes a while for the
// underlying blueprint to finish loading.
filter: "\
blenvy=warn,\
blenvy::components::ronstring_to_reflect_component=error,\
avian3d::prepare=error\
"
.to_string(),
..default()
}),
);
Expand Down

0 comments on commit 2d4a64c

Please sign in to comment.