refactor(logging): 将视频任务更新检查日志级别从 info 调整为 debug

- 修改 VideoTaskRepository 中的日志记录级别
- 将任务更新检查完成的日志从 info 级别改为 debug 级别
- 保持日志内容和参数不变,仅调整日志级别以减少生产环境日志量
This commit is contained in:
2025-10-20 15:05:28 +08:00
parent 9fcb472717
commit 7ea78e4a17

View File

@@ -179,7 +179,7 @@ public class VideoTaskRepository {
result.setCanUpdate(canUpdate); result.setCanUpdate(canUpdate);
result.setNewSegmentCount(newSegmentCount); result.setNewSegmentCount(newSegmentCount);
log.info("任务更新检查完成: taskId={}, canUpdate={}, newSegmentCount={}, originalCount={}, currentCount={}", log.debug("任务更新检查完成: taskId={}, canUpdate={}, newSegmentCount={}, originalCount={}, currentCount={}",
taskId, result.isCanUpdate(), newSegmentCount, originalSegmentCount, currentSegmentCount); taskId, result.isCanUpdate(), newSegmentCount, originalSegmentCount, currentSegmentCount);
} catch (Exception e) { } catch (Exception e) {