疯狂的狮子Li
2024-04-30 f7f2c1730d5b3c8aa1f20dae033c26e34a540fc0
ruoyi-common/ruoyi-common-satoken/src/main/java/org/dromara/common/satoken/core/dao/PlusSaTokenDao.java
@@ -37,7 +37,6 @@
    @Override
    public String get(String key) {
        Object o = CAFFEINE.get(key, k -> RedisUtils.getCacheObject(key));
        Console.log("caffeine -> key:" + key + ",value:" + o);
        return (String) o;
    }
@@ -101,7 +100,6 @@
    @Override
    public Object getObject(String key) {
        Object o = CAFFEINE.get(key, k -> RedisUtils.getCacheObject(key));
        Console.log("caffeine -> key:" + key + ",value:" + o);
        return o;
    }