update 优化 删除观测用日志记录

This commit is contained in:
疯狂的狮子Li
2024-01-28 23:14:55 +08:00
parent ea8fe0ed7f
commit 72ff3f67bd
2 changed files with 0 additions and 5 deletions

View File

@@ -37,7 +37,6 @@ public class PlusSaTokenDao implements SaTokenDao {
@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 @@ public class PlusSaTokenDao implements SaTokenDao {
@Override
public Object getObject(String key) {
Object o = CAFFEINE.get(key, k -> RedisUtils.getCacheObject(key));
Console.log("caffeine -> key:" + key + ",value:" + o);
return o;
}