移除不必要的日志

This commit is contained in:
谷成伟 2025-01-14 17:10:52 +08:00
parent fddacfb1be
commit 7982d2b386

View File

@ -86,7 +86,6 @@ public class DataServiceImpl implements DataService {
*/
@Override
public Map<String, Map<String, Object>> querySnapshotValues(List<SnapshotValueQueryParam> paramList) {
long start = System.currentTimeMillis();
Map<String, Map<String, Object>> result = new HashMap<>(paramList.size());
ListUtil.page(paramList, COMMIT_COUNT, list -> {
List<String> keyList = new ArrayList<>();
@ -123,8 +122,6 @@ public class DataServiceImpl implements DataService {
}
}
});
long end = System.currentTimeMillis();
log.debug("querySnapshotValues {}个,耗时: {}秒", paramList.size(), (end - start) / 1000.0);
return result;
}