|
@@ -79,7 +79,7 @@ public class ClearExpireDataJobHandler {
|
|
|
}
|
|
|
countSql.append(" and creation_time <= '").append(expireTime).append("'");
|
|
|
Long totalCount = jdbcTemplate.queryForObject(countSql.toString(), Long.class);
|
|
|
- log.warn("清理过期数据任务!jobParam:{} totalCount:{} [{}]", jobParam, totalCount, countSql);
|
|
|
+ log.warn("清理过期数据任务!totalCount:{} jobParam:{} expireTime:{}", totalCount, jobParam, expireTime);
|
|
|
if (totalCount == null || totalCount == 0) {
|
|
|
return;
|
|
|
}
|