1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-17 02:00:25 +03:00

ringlog: suppress tracing, zbus INFO logs

Something changed recently in those crates to make them log
a bunch of info logs fairly often; suppress them from our
default log filter.
This commit is contained in:
Wez Furlong 2024-05-05 14:04:47 -07:00
parent 809bcc55a5
commit 962ba3af6e
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -281,6 +281,8 @@ fn setup_pretty() -> (LevelFilter, Logger) {
("wgpu_core", LevelFilter::Error),
("wgpu_hal", LevelFilter::Error),
("gfx_backend_metal", LevelFilter::Error),
("tracing", LevelFilter::Error),
("zbus", LevelFilter::Error),
] {
filters.filter_module(module, level);
}