diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index 3578ad3d57..b4c1760b5c 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -45,6 +45,8 @@ use tracing_subscriber::{prelude::*, registry::Registry, EnvFilter}; /// /// Log level can also be changed using the `RUST_LOG` environment variable. /// It has the same syntax has the field [`LogSettings::filter`], see [`EnvFilter`]. +/// If you define the `RUST_LOG` environment variable, the [`LogSettings`] resource +/// will be ignored. /// /// If you want to setup your own tracing collector, you should disable this /// plugin from `DefaultPlugins` with [`App::add_plugins_with`]: