|
|
|
@ -53,13 +53,13 @@ public class RequestLogConfig {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String proceedResult(Object result) {
|
|
|
|
|
String value = String.valueOf(result);
|
|
|
|
|
private Object proceedResult(Object result) {
|
|
|
|
|
String value = JSONUtil.toJsonStr(result);
|
|
|
|
|
if (value.length() > 10240){
|
|
|
|
|
value = value.substring(0, 1024) + "......" + value.substring(value.length() - 1024);
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
return value;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|