Skip to content

Commit 2d4a64c

Browse files
committed
Fix more warning spam
1 parent 4237455 commit 2d4a64c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/lib.rs

+10-4
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,16 @@ impl Plugin for AppPlugin {
6363
..default()
6464
})
6565
.set(LogPlugin {
66-
// Blenvy's alpha currently logs debug messages under the info level, so we disable that in general
67-
// The ronstring_to_reflect_component is reporting a warning for `components_meta`, which is exported by mistake.
68-
filter: "blenvy=warn,blenvy::components::ronstring_to_reflect_component=error"
69-
.to_string(),
66+
// - Blenvy's alpha currently logs debug messages under the info level, so we disable that in general.
67+
// - The ronstring_to_reflect_component is reporting a warning for `components_meta`, which is exported by mistake.
68+
// - avian3d::prepare is reporting that dynamic rigid bodies are lacking mass, which is because it takes a while for the
69+
// underlying blueprint to finish loading.
70+
filter: "\
71+
blenvy=warn,\
72+
blenvy::components::ronstring_to_reflect_component=error,\
73+
avian3d::prepare=error\
74+
"
75+
.to_string(),
7076
..default()
7177
}),
7278
);

0 commit comments

Comments
 (0)