From e7f7b8015209302678ec9c6a0a58c88e4961630d Mon Sep 17 00:00:00 2001 From: CaiHQ Date: Sun, 26 Jun 2022 17:54:30 +0800 Subject: [PATCH] front: support startMulitipoint with args fix: ContractClient missing arguments error update: @Router arguments format fix: ContractStatusRecorder null exception --- src/main/src/org/bdware/server/action/ActionExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/src/org/bdware/server/action/ActionExecutor.java b/src/main/src/org/bdware/server/action/ActionExecutor.java index f0bcd58..8fe2651 100644 --- a/src/main/src/org/bdware/server/action/ActionExecutor.java +++ b/src/main/src/org/bdware/server/action/ActionExecutor.java @@ -117,7 +117,7 @@ public class ActionExecutor { public void handle(String action, final U args, final T callback) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException { // LOGGER.info("handling " + action + "..."); - // LOGGER.debug("handle : " + action + " ->" + JsonUtil.toJson(args)); + // LOGGER.info("handle : " + action + " ->" + JsonUtil.toJson(args)); if (null != action) { if (staticData.containsKey(action)) { @@ -135,7 +135,7 @@ public class ActionExecutor { final Pair pair = handlers.get(action); Action actionAnnotations = pair.first.getAnnotation(Action.class); if (!checkPermission(actionAnnotations, args, permission)) { - LOGGER.info("unauthorised action " + action); + LOGGER.info("unauthorised action " + action + " -> " + JsonUtil.toJson(args)); throw new IllegalArgumentException("unauthorised action " + action); }