Add logging for executing action

This commit is contained in:
AsamK 2021-12-23 18:22:14 +01:00
parent 6fcec33ab6
commit 8cd8016c3d

View file

@ -1252,6 +1252,7 @@ public class ManagerImpl implements Manager {
logger.debug("Handling message actions"); logger.debug("Handling message actions");
var interrupted = false; var interrupted = false;
for (var action : queuedActions) { for (var action : queuedActions) {
logger.debug("Executing action {}", action.getClass().getSimpleName());
try { try {
action.execute(context); action.execute(context);
} catch (Throwable e) { } catch (Throwable e) {