Log font weight errors

pull/178/head
M66B 5 years ago
parent 815344ed53
commit b0835b8cdd

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

Loading…
Cancel
Save