Skip to content

Commit 3c0656f

Browse files
committed
Complex scripts: fallback to old feature tables implementation in case new ones were not found
1 parent 7a8eef9 commit 3c0656f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

layout/src/main/java/com/itextpdf/layout/renderer/TypographyUtils.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ private static Object callMethod(String className, String methodName, Object tar
142142
} catch (ClassNotFoundException e) {
143143
logger.warn(String.format("Cannot find class %s", className));
144144
} catch (Exception ignored) {
145+
logger.error(ignored.toString());
145146
}
146147
return null;
147148
}
@@ -156,6 +157,7 @@ private static Object callConstructor(String className, Class[] parameterTypes,
156157
} catch (ClassNotFoundException e) {
157158
logger.warn(String.format("Cannot find class %s", className));
158159
} catch (Exception ignored) {
160+
logger.error(ignored.toString());
159161
}
160162
return null;
161163
}

0 commit comments

Comments
 (0)