Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Dec 11, 2024
1 parent 9404ef4 commit 3cddbb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_log/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ pub(crate) struct FlushGuard(SyncCell<tracing_chrome::FlushGuard>);
/// ```
/// 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.
Expand Down

0 comments on commit 3cddbb6

Please sign in to comment.