Skip to content

Commit

Permalink
Fix: Change the error to a warning when searching for font path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jklawreszuk committed Aug 1, 2024
1 parent 8dd9a99 commit cdccf6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private string GetFontPathLinux(AssetCompilerResult result)
return file;
}
}
result?.Error($"Cannot find style '{Style}' for font family '{FontName}'. Make sure it is installed on this machine.");
result?.Warning($"Cannot find style '{Style}' for font family '{FontName}'. Make sure it is installed on this machine.");
return null;
}

Expand Down

0 comments on commit cdccf6e

Please sign in to comment.