This commit is contained in:
bwcx_jzy 2023-10-11 14:32:10 +08:00
parent 5048aaae5e
commit 798765a9ad
No known key found for this signature in database
GPG Key ID: E187D6E9DDDE8C53

View File

@ -236,7 +236,7 @@ public class OperateLogController implements AopLogInterface {
userOperateLogV1.setResultMsg(ExceptionUtil.stacktraceToString(throwable));
userOperateLogV1.setOptStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());
} else {
String json = value.toString();
String json = JSONObject.toJSONString(value);
userOperateLogV1.setResultMsg(json);
try {
JsonMessage<?> jsonMessage = JSONObject.parseObject(json, JsonMessage.class);