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 {
fn default() -> Self {
Self {
filter: "wgpu=warn".to_string(),
filter: "wgpu=error".to_string(),
level: Level::INFO,
}
}