Compare commits

..

2 Commits

Author SHA1 Message Date
lbw
57166af2f4 Merge branch 'master' of https://git.yinlihupo.cn/LeiBoWen/en-edu 2025-12-31 17:24:03 +08:00
lbw
fcb8ac9c22 feat(plan): 添加周末计划生成日志记录
- 在生成周末计划开始处添加日志输出
- 有助于调试和监控计划生成流程
2025-12-31 17:22:55 +08:00

View File

@@ -155,6 +155,7 @@ public class LessonPlansServiceImpl implements LessonPlansService {
try {
log.info("开始生成周末计划");
int syncWeekendSize = totalWords.size() / 2;
for (int i = 0; i < 2; i++) {
List<VocabularyBankDO> checkList = totalWords.subList(i * syncWeekendSize, Math.min((i + 1) * syncWeekendSize, syncWeekendSize));