minor bugfixes

This commit is contained in:
Stephan Richter
2020-11-13 11:55:59 +01:00
parent 9eb8f5443a
commit f2ee754064
7 changed files with 15 additions and 12 deletions

View File

@@ -55,6 +55,7 @@ public class DelayedAction extends Action {
public void run() {
try {
Thread.sleep(delay);
LOG.debug("{} ms passed by, firing actions:",delay);
} catch (InterruptedException e) {
LOG.warn("Interrupted Exception thrown while waiting:",e);
}