Commit 4227025e by 墨竹

feat:删除打印日志

parent 7a6a47a7
...@@ -1306,7 +1306,7 @@ public class StaffApiServiceImpl implements StaffApiService { ...@@ -1306,7 +1306,7 @@ public class StaffApiServiceImpl implements StaffApiService {
String cacheKey = "hb:clerk:store:" + clerkId + wxEnterpriseId; String cacheKey = "hb:clerk:store:" + clerkId + wxEnterpriseId;
Object cache = RedisUtil.getCache(cacheKey); Object cache = RedisUtil.getCache(cacheKey);
if (cache != null) { if (cache != null) {
logger.info("从缓存中获取通道={},{}", cacheKey, JSON.toJSONString(cache)); logger.info("从缓存中获取通道={}", cacheKey);
return (List<String>) cache; return (List<String>) cache;
} }
ClerkDTO clerkDTO = clerkService.getClerkByClerkId(clerkId); ClerkDTO clerkDTO = clerkService.getClerkByClerkId(clerkId);
...@@ -1349,7 +1349,7 @@ public class StaffApiServiceImpl implements StaffApiService { ...@@ -1349,7 +1349,7 @@ public class StaffApiServiceImpl implements StaffApiService {
String cacheKey = "hb:clerk:store:" + clerkId + wxEnterpriseId; String cacheKey = "hb:clerk:store:" + clerkId + wxEnterpriseId;
Object cache = RedisUtil.getCache(cacheKey); Object cache = RedisUtil.getCache(cacheKey);
if (cache != null) { if (cache != null) {
logger.info("从缓存中获取通道={},{}", cacheKey, JSON.toJSONString(cache)); logger.info("从缓存中获取通道={}", cacheKey);
return (List<String>) cache; return (List<String>) cache;
} }
ClerkDTO clerkDTO = clerkService.getClerkByClerkId(clerkId); ClerkDTO clerkDTO = clerkService.getClerkByClerkId(clerkId);
......
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