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); }