Skip to content

Commit

Permalink
enhanced logging
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Nov 15, 2024
1 parent 68c1e9a commit c606346
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,9 @@ public void run() {
} catch (Exception ex) {
running = false;
log.error(ex);
if(ex.getCause()!=null) {
log.error(ex.getCause());
}
SwingUtilities.invokeLater(() -> {
pnlPreview.setVisible(false);
pnlPreview.removeAll();
Expand Down

0 comments on commit c606346

Please sign in to comment.