Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dac3465

Browse files
committed
fix by jedis get command loging
1 parent 74d0e6d commit dac3465

File tree

1 file changed

+1
-1
lines changed
  • springboot-jedis-sample/src/main/java/com/ipman/springboot/redis/jedis/sample/utils

1 file changed

+1
-1
lines changed

springboot-jedis-sample/src/main/java/com/ipman/springboot/redis/jedis/sample/utils/JedisUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public String get(String key, int indexdb) {
5050
jedis = jedisPool.getResource();
5151
jedis.select(indexdb);
5252
value = jedis.get(key);
53-
log.info(value);
53+
//log.info(value);
5454
} catch (Exception e) {
5555

5656
log.error(e.getMessage());

0 commit comments

Comments
 (0)