From 3cddbb622281d08c275e5c12cc809379fc57224f Mon Sep 17 00:00:00 2001 From: Alice I Cecile Date: Wed, 11 Dec 2024 09:00:27 -0800 Subject: [PATCH] Formatting --- crates/bevy_log/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index 5e15daf996721..210f9c5df0702 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -153,9 +153,9 @@ pub(crate) struct FlushGuard(SyncCell); /// ``` /// The filter (in this case an EnvFilter) chooses whether to print the log, the most specific filters apply /// lets start with an example `filter: "warn".to_string()` will only print logs with level `warn` level or greater -/// From here we can change to `filter: "warn,my_crate=trace".to_string()` logs will only print at warn unless it's in `mycrate` +/// From here we can change to `filter: "warn,my_crate=trace".to_string()` logs will only print at warn unless it's in `mycrate` /// which will print at `trace` level `my_crate=trace` as that clause is more specific -/// +/// /// /// ## Log levels /// Events can be logged at various levels of importance.