pamapi/src/main/java/com/pollex/pam/aop/logging/LoggingAspect.java
@@ -100,8 +100,10 @@ try { Object result = joinPoint.proceed(); if (log.isDebugEnabled()) { if(!(result instanceof byte[])){ log.debug("Exit: {}() with result = {}", joinPoint.getSignature().getName(), result); } } return result; } catch (IllegalArgumentException e) { log.error("Illegal argument: {} in {}()", Arrays.toString(joinPoint.getArgs()), joinPoint.getSignature().getName());