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

Merge pull request !46 from Gnemui/N/A
pull/47/MERGE
stylefeng 2023-02-22 15:16:57 +00:00 committed by Gitee
commit 694aea2fa0
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);
}