Log font weight errors

This commit is contained in:
M66B
2020-04-25 20:35:45 +02:00
parent 815344ed53
commit b0835b8cdd

View File

@@ -1072,7 +1072,8 @@ public class HtmlHelper {
try {
return Integer.parseInt(value);
} catch (NumberFormatException ignored) {
} catch (NumberFormatException ex) {
Log.w(ex);
}
return null;