diff options
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(); |