Add additional logging

This commit is contained in:
Stone_Red
2022-06-02 22:53:30 +02:00
parent fc1779896a
commit 49271daad5
@@ -22,7 +22,11 @@ public class GlobalExecQueue {
Semaphore s = new Semaphore(0);
Platform.runLater(() -> {
while (queue.size() > 0) {
Objects.requireNonNull(queue.poll()).run();
try {
Objects.requireNonNull(queue.poll()).run();
} catch (Exception ex) {
ex.printStackTrace();
}
}
s.release();
});