log errors when showing main window

This commit is contained in:
Sebastian Stenzel
2022-04-11 09:35:35 +02:00
parent 9a9ef6c583
commit 69f3a2bd5a

View File

@@ -61,6 +61,9 @@ public class FxApplication {
stage.setIconified(true);
}
}
}).exceptionally(error -> {
LOG.error("Failed to show main window", error);
return null;
});
launchEventHandler.startHandlingLaunchEvents();