Jonathan Hart
Committed by Gerrit Code Review

Catch and print Errors as well as exceptions in CoreEventDispatcher

Change-Id: I8c41404aba26ad9c09b9b1bdc2e31b8350b1924c
......@@ -124,7 +124,7 @@ public class CoreEventDispatcher extends DefaultEventSinkRegistry
process(event);
} catch (InterruptedException e) {
log.warn("Dispatch loop interrupted");
} catch (Exception e) {
} catch (Exception | Error e) {
log.warn("Error encountered while dispatching event:", e);
}
}
......