调整log级别

This commit is contained in:
wanggeng 2021-10-23 23:09:50 +08:00
parent 41421b38f2
commit 6209e3fb1c
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ public class AppTokenManager implements IAppManager {
for (String tokenKey : clearTokenKeys) {
tokens.remove(tokenKey);
}
LOG.debug("本次共清理超时Token:{}个", clearTokenKeys.size());
LOG.trace("本次共清理超时Token:{}个", clearTokenKeys.size());
}
private static class AppTokenManagerBuilder {

View File

@ -120,7 +120,7 @@ public class VerifyCodeManager {
size++;
}
}
LOG.debug("本次清除超时验证码:{}个", size);
LOG.trace("本次清除超时验证码:{}个", size);
}
private static class VerifyCodeManagerBuilder {