Hello. I'm new to valence!
HEAD: 2b70535
I just ran cargo test and saw a lot of same errors coming up:
ERROR bevy_log: Could not set global logger and tracing subscriber as they are already set. Consider disabling LogPlugin.
This is because LogPlugin is initialized multiple times when running multiple tests together.
No error would pop up if only running a single test at a time.
How should we address this? Should we just disable LogPlugin in valence::testing::ScenarioSingleClient::new?
Hello. I'm new to valence!
HEAD: 2b70535
I just ran
cargo testand saw a lot of same errors coming up:This is because
LogPluginis initialized multiple times when running multiple tests together.No error would pop up if only running a single test at a time.
How should we address this? Should we just disable
LogPlugininvalence::testing::ScenarioSingleClient::new?