From 45e2be384756dbd6cb2c0d3c87f6dc2a9719edcc Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Mon, 14 Dec 2020 17:15:07 -0800 Subject: [PATCH] suppress wgpu warnings by default. they are generally unactionable and noisy (#1066) --- crates/bevy_log/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index 98737d513b..c8248cedab 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -33,7 +33,7 @@ pub struct LogSettings { impl Default for LogSettings { fn default() -> Self { Self { - filter: "wgpu=warn".to_string(), + filter: "wgpu=error".to_string(), level: Level::INFO, } }