update AccessLogCleanJob.java

将返回文案中的“错误日志”修改为“访问日志”

Signed-off-by: 高高 <171376172@qq.com>
This commit is contained in:
高高 2024-04-23 07:07:21 +00:00 committed by Gitee
parent a27c040a8f
commit c553a7b5a0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -35,7 +35,7 @@ public class AccessLogCleanJob implements JobHandler {
public String execute(String param) {
Integer count = apiAccessLogService.cleanAccessLog(JOB_CLEAN_RETAIN_DAY, DELETE_LIMIT);
log.info("[execute][定时执行清理访问日志数量 ({}) 个]", count);
return String.format("定时执行清理错误日志数量 %s 个", count);
return String.format("定时执行清理访问日志数量 %s 个", count);
}
}