Commit b79ab0dc by 查志伟

临时添加日志打印

parent 8294ab26
...@@ -2099,7 +2099,10 @@ public class OrderAdapter { ...@@ -2099,7 +2099,10 @@ public class OrderAdapter {
boolean canRefund = false; boolean canRefund = false;
String hkey = OrderType.TAKE_OUT.getCode().equals(orderBean.getOrderType()) ? KgdRedisKeyConstant.REFUND_CFG_TAKE_OUT : KgdRedisKeyConstant.REFUND_CFG_EAT_IN; String hkey = OrderType.TAKE_OUT.getCode().equals(orderBean.getOrderType()) ? KgdRedisKeyConstant.REFUND_CFG_TAKE_OUT : KgdRedisKeyConstant.REFUND_CFG_EAT_IN;
String configStr = redisCache.hashGet(hkey, MessageFormat.format(KgdRedisKeyConstant.ORDER_REFUND_CONFIG, orderBean.getCompanyId(), wxAppId)); String configStr = redisCache.hashGet(hkey, MessageFormat.format(KgdRedisKeyConstant.ORDER_REFUND_CONFIG, orderBean.getCompanyId(), wxAppId));
ApiLog.infoMessage("查询小程序退款配置的redis信息: <{}>", configStr); ApiLog.infoMessage("查询小程序退款配置的redis信息key:<{}>, hkey:<{}>, value:<{}>",
MessageFormat.format(KgdRedisKeyConstant.ORDER_REFUND_CONFIG, orderBean.getCompanyId(), wxAppId),
hkey,
configStr);
if (StringUtils.isEmpty(configStr)) { if (StringUtils.isEmpty(configStr)) {
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment