diff --git a/src/main/src/org/bdware/server/action/ActionExecutor.java b/src/main/src/org/bdware/server/action/ActionExecutor.java index a5155a2..ca0f347 100644 --- a/src/main/src/org/bdware/server/action/ActionExecutor.java +++ b/src/main/src/org/bdware/server/action/ActionExecutor.java @@ -116,7 +116,7 @@ public class ActionExecutor { public void handle(String action, final U args, final T callback) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException { - LOGGER.info("[ActionExecutor] handle : " + action + " ->" + JsonUtil.toJson(args)); +// LOGGER.info("[ActionExecutor] handle : " + action + " ->" + JsonUtil.toJson(args)); if (null != action) { if (staticData.containsKey(action)) { @@ -127,7 +127,8 @@ public class ActionExecutor { } // logger.debug("[ActionExecutor] handle : "); if (!handlers.containsKey(action)) { - LOGGER.debug("unsupported action " + action); + LOGGER.debug("unsupported action " + action + "->" + JsonUtil.toJson(args)); + throw new IllegalArgumentException("unsupported action " + action); }