suppress wgpu warnings by default. they are generally unactionable and noisy (#1066)

This commit is contained in:
Carter Anderson 2020-12-14 17:15:07 -08:00 committed by GitHub
parent b12e3bf3bb
commit 45e2be3847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ pub struct LogSettings {
impl Default for LogSettings { impl Default for LogSettings {
fn default() -> Self { fn default() -> Self {
Self { Self {
filter: "wgpu=warn".to_string(), filter: "wgpu=error".to_string(),
level: Level::INFO, level: Level::INFO,
} }
} }