打印日志

This commit is contained in:
xiang2lin 2024-07-05 10:36:45 +08:00
parent 4d7763cea5
commit 4df2832c59
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
@Override @Override
public SysExtensionApiEntity payApply(SysExtensionApiEntity entity) { public SysExtensionApiEntity payApply(SysExtensionApiEntity entity) {
String bodys = entity.getBodys(); String bodys = entity.getBodys();
logger.info("Cbs8ExtServiceImpl.payApply方法body参数:{}",bodys);
if (StrUtil.isNotEmpty(bodys)) { if (StrUtil.isNotEmpty(bodys)) {
PaymentEntity paymentEntity = JSONObject.parseObject(bodys, PaymentEntity.class); PaymentEntity paymentEntity = JSONObject.parseObject(bodys, PaymentEntity.class);
if (null != paymentEntity) { if (null != paymentEntity) {
@ -73,6 +74,7 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
entity.setBodys(requestData); entity.setBodys(requestData);
} }
} }
logger.info("Cbs8ExtServiceImpl.payApply方法执行完毕:{}",JSONObject.toJSONString(entity));
return entity; return entity;
} }