update打印日志

This commit is contained in:
2024-01-17 13:58:48 +08:00
parent d7657a5512
commit 63c37e71ef
2 changed files with 4 additions and 4 deletions

View File

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

View File

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