diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-05-06 16:48:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 16:48:45 +0200 |
commit | f208e6a26f3c21c25dbfcfe29491a6f5660c999d (patch) | |
tree | 65dbbd45b2f36faab8ae585eb0d270356bcba33e /cli/main.rs | |
parent | ce76f8c3a97529c86d49c39c6d9a250f978b5430 (diff) |
chore: update wgpu and realign to spec (#9760)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 6b5c5da27..ba3abc43d 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -967,7 +967,8 @@ fn init_logger(maybe_level: Option<Level>) { ) // https://github.com/denoland/deno/issues/6641 .filter_module("rustyline", LevelFilter::Off) - // wgpu backend crates (gfx_backend), have a lot of useless INFO and WARN logs + // wgpu crates (gfx_backend), have a lot of useless INFO and WARN logs + .filter_module("wgpu", LevelFilter::Error) .filter_module("gfx", LevelFilter::Error) .format(|buf, record| { let mut target = record.target().to_string(); |