We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b21249b commit 78229ebCopy full SHA for 78229eb
jabgui/src/main/java/org/jabref/gui/util/UiTaskExecutor.java
@@ -212,6 +212,8 @@ protected V call() throws Exception {
212
}
213
214
private static Exception convertToException(Throwable throwable) {
215
+ // LOGGER.warn here, because the exception silently disappears otherwise
216
+ LOGGER.warn("Converting throwable to Exception", throwable);
217
if (throwable instanceof Exception exception) {
218
return exception;
219
} else {
0 commit comments