Commit 03b5fa28 by ping.wu

打印日志

parent 9598ac4f
...@@ -2661,6 +2661,8 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -2661,6 +2661,8 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
String redisKey = RedisUtil.limitCart + partnerId + "_" + appid; String redisKey = RedisUtil.limitCart + partnerId + "_" + appid;
//购物车内部缓存 //购物车内部缓存
String value = redisCache.hashGet(redisKey, "cartLimitType"); String value = redisCache.hashGet(redisKey, "cartLimitType");
ShoppingSdkLogUtil.infoLog("queryLimitCount",redisKey,value);
if (StringUtils.isNotBlank(value)) { if (StringUtils.isNotBlank(value)) {
return Integer.parseInt(value); return Integer.parseInt(value);
} }
......
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