From 4efd07bb03279920326798c99bda0767a8c3f571 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Thu, 19 Feb 2026 15:59:50 +0100 Subject: [PATCH] zlog: Broaden filter for usvg parser warnings (#49607) Noticed this while looking into #49595 Release Notes: - N/A --- crates/zlog/src/filter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zlog/src/filter.rs b/crates/zlog/src/filter.rs index a6b6facfe9903a11865ab3e897e144ccde468fe6..c6e51fa40340b4aad7efb017c961ce8891ab776e 100644 --- a/crates/zlog/src/filter.rs +++ b/crates/zlog/src/filter.rs @@ -43,7 +43,7 @@ const DEFAULT_FILTERS: &[(&str, log::LevelFilter)] = &[ ("naga::back::spv::writer", log::LevelFilter::Warn), // usvg prints a lot of warnings on rendering an SVG with partial errors, which // can happen a lot with the SVG preview - ("usvg::parser::style", log::LevelFilter::Error), + ("usvg::parser", log::LevelFilter::Error), ]; pub fn init_env_filter(filter: env_config::EnvFilter) {