Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion crates/bevy_log/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,18 @@ type PreFmtSubscriber =
pub type BoxedFmtLayer = Box<dyn Layer<PreFmtSubscriber> + Send + Sync + 'static>;

/// The default [`LogPlugin`] [`EnvFilter`].
pub const DEFAULT_FILTER: &str = "wgpu=error,naga=warn";
pub const DEFAULT_FILTER: &str = concat!(
"wgpu=error,",
"naga=warn,",
"symphonia_bundle_mp3::demuxer=warn,",
"symphonia_format_caf::demuxer=warn,",
"symphonia_format_isompf4::demuxer=warn,",
"symphonia_format_mkv::demuxer=warn,",
"symphonia_format_ogg::demuxer=warn,",
"symphonia_format_riff::demuxer=warn,",
"symphonia_format_wav::demuxer=warn,",
"calloop::loop_logic=error,",
);

impl Default for LogPlugin {
fn default() -> Self {
Expand Down
1 change: 1 addition & 0 deletions typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ reparametrization = "reparametrization" # Mathematical term in curve context (re
reparametrize = "reparametrize"
reparametrized = "reparametrized"
mis = "mis" # mis - multiple importance sampling
caf = "caf" # CAF - Core Audio Format

# Match a Whole Word - Case Sensitive
[default.extend-identifiers]
Expand Down