From 987db152639d88c9c09cfe854314f96c5fcacc3a Mon Sep 17 00:00:00 2001 From: Colin Rofls Date: Thu, 3 Oct 2024 13:00:59 -0400 Subject: [PATCH] Use log::warn for fea-rs warnings in fontc Currently these are using 'debug', which doesn't seem right. --- fontbe/src/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fontbe/src/features.rs b/fontbe/src/features.rs index eed18d86c..c3f2b07dc 100644 --- a/fontbe/src/features.rs +++ b/fontbe/src/features.rs @@ -603,7 +603,7 @@ impl Work for FeatureCompilationWork { fn log_fea_warnings(stage: &str, warnings: &DiagnosticSet) { assert!(!warnings.has_errors(), "of course we checked this already"); if !warnings.is_empty() { - log::debug!( + log::warn!( "FEA {stage} produced {} warnings:\n{}", warnings.len(), warnings.display()