update 打印日志

This commit is contained in:
2024-02-28 15:22:38 +08:00
parent 32a5daeeac
commit 50777ea07a
4 changed files with 24 additions and 17 deletions

View File

@@ -410,9 +410,9 @@ public class DelayMerchantProgramLogic extends AbstractProgramLogic {
WechatSendMsgDTO wechatSendMsgDTO = new WechatSendMsgDTO();
wechatSendMsgDTO.setOrderCode(orderBasicInfo.getOrderCode());
Map<String, String> resultMap = wxAppletRemoteService.stopChargingSendMsg(wechatSendMsgDTO);
logger.info("【{}】-小程序发送充电停止推送消息 result:{}", this.getClass().getSimpleName(), JSON.toJSONString(resultMap));
logger.info("【{}】-小程序发送充电停止推送消息, orderCode:{}, result:{}", this.getClass().getSimpleName(), orderBasicInfo.getOrderCode(), JSON.toJSONString(resultMap));
} catch (Exception e) {
logger.error("【{}】-小程序发送充电停止推送消息 error", this.getClass().getSimpleName(), e);
logger.error("【{}】-小程序发送充电停止推送消息, orderCode:{}, error", this.getClass().getSimpleName(), orderBasicInfo.getOrderCode(), e);
}
}