Showing
1 changed file
with
1 additions
and
1 deletions
@@ -103,7 +103,7 @@ public class RedisHashCache { | @@ -103,7 +103,7 @@ public class RedisHashCache { | ||
103 | logger.warn("RedisHashCache put failed!!! value {}", v); | 103 | logger.warn("RedisHashCache put failed!!! value {}", v); |
104 | return; | 104 | return; |
105 | } | 105 | } |
106 | - logger.info("RedisHashCache put, cacheKey is: {},obj is: {},hashkey is {},value is {}", cacheKey,obj, hashKey,value); | 106 | + logger.debug("RedisHashCache put, cacheKey is: {},obj is: {},hashkey is {},value is {}", cacheKey,obj, hashKey,value); |
107 | RedisKeyBuilder redisKeyBuilder = RedisKeyBuilder.newInstance().appendFixed(cacheKey).appendVar(obj); | 107 | RedisKeyBuilder redisKeyBuilder = RedisKeyBuilder.newInstance().appendFixed(cacheKey).appendVar(obj); |
108 | this.hashOperations.put(redisKeyBuilder, hashKey, v); | 108 | this.hashOperations.put(redisKeyBuilder, hashKey, v); |
109 | this.yHRedisTemplate.longExpire(redisKeyBuilder, timeout, unit); | 109 | this.yHRedisTemplate.longExpire(redisKeyBuilder, timeout, unit); |
-
Please register or login to post a comment