Skip to content

Commit

Permalink
Use log::warn for fea-rs warnings in fontc
Browse files Browse the repository at this point in the history
Currently these are using 'debug', which doesn't seem right.
  • Loading branch information
cmyr committed Oct 3, 2024
1 parent 771b14f commit 987db15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fontbe/src/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ impl Work<Context, AnyWorkId, Error> 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()
Expand Down

0 comments on commit 987db15

Please sign in to comment.