update 打印日志

This commit is contained in:
Guoqs
2025-10-11 15:41:41 +08:00
parent 17873f5405
commit 9abaee98f4

View File

@@ -1,6 +1,6 @@
package com.jsowell.pile.service.impl; package com.jsowell.pile.service.impl;
import com.alibaba.druid.support.json.JSONUtils; import com.alibaba.fastjson2.JSON;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.google.common.collect.Lists; import com.google.common.collect.Lists;
@@ -100,7 +100,7 @@ public class OrderSplitRecordServiceImpl implements OrderSplitRecordService {
} }
resultList.add(orderSplitRecord); resultList.add(orderSplitRecord);
} }
log.info("transformationOrderSplitRecordList-订单分账记录转换完成:{}", JSONUtils.toJSONString(resultList)); log.info("transformationOrderSplitRecordList-订单分账记录转换完成:{}", JSON.toJSONString(resultList));
return resultList; return resultList;
} }