【7.3.3】【log】修复日志查询响应结果

pull/46/head
Gnemui 2023-02-21 01:49:48 +00:00 committed by Gitee
parent b5b6a5e0a6
commit e3c493e65c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class DbLogManagerServiceImpl implements LogManagerApi {
BeanUtil.copyProperties(row, logRecordDTO);
// 设置请求和响应为空,减少带宽开销
logRecordDTO.setRequestResult(null);
logRecordDTO.setRequestParams(null);
logRecordDTO.setRequestResult(null);
newRows.add(logRecordDTO);
}