1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-22 15:58:52 -05:00

Notify user with error message / popup if xdg-open fails

This commit is contained in:
Reinhard Pointner 2018-07-12 22:41:55 +07:00
parent ec2110dc2b
commit 29875dab1a

View File

@ -65,7 +65,7 @@ public final class SwingUI {
try {
UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception e) {
debug.log(Level.SEVERE, "Failed to set Nimbus LaF", e);
log.log(Level.SEVERE, "Failed to set Nimbus LaF", e);
}
}
@ -73,7 +73,7 @@ public final class SwingUI {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
debug.log(Level.SEVERE, "Failed to set System LaF", e);
log.log(Level.SEVERE, "Failed to set System LaF", e);
}
}
@ -87,7 +87,7 @@ public final class SwingUI {
p.inheritIO().start();
}
} catch (Exception e) {
debug.log(Level.SEVERE, "Failed to open URI: " + uri, e);
log.log(Level.SEVERE, "Failed to open URI: " + uri, e);
}
}