|
@@ -148,12 +148,12 @@ public class LogAspect
|
|
|
if (HttpMethod.PUT.name().equals(requestMethod) || HttpMethod.POST.name().equals(requestMethod))
|
|
|
{
|
|
|
String params = argsArrayToString(joinPoint.getArgs());
|
|
|
- operLog.setOperParam(StringUtils.substring(params, 0, 2000));
|
|
|
+ operLog.setOperParam(StringUtils.substring(params, 0, 10000));
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
Map<?, ?> paramsMap = ServletUtils.getParamMap(ServletUtils.getRequest());
|
|
|
- operLog.setOperParam(StringUtils.substring(JSON.toJSONString(paramsMap, excludePropertyPreFilter()), 0, 2000));
|
|
|
+ operLog.setOperParam(StringUtils.substring(JSON.toJSONString(paramsMap, excludePropertyPreFilter()), 0, 10000));
|
|
|
}
|
|
|
}
|
|
|
|