🐛 修复定时任务日志和执行问题

- 修复日志按钮点击无反应(类型匹配和错误处理)
- 修复定时任务到时间不执行(时间格式标准化)
- 增强所有检查点的调试日志输出
- 改进今日执行检查逻辑(支持同一天不同时间执行)

Bug 1: 日志按钮完全没反应
- 将严格相等(===)改为宽松相等(==)避免类型不匹配
- 添加详细的错误日志和用户提示
- 添加容器元素存在性检查

Bug 2: 定时任务到时间不会被执行
- 标准化时间格式(8:00 -> 08:00)
- 增强所有检查点的日志输出(时间、星期、账号)
- 改进今日执行检查(同一天不同时间可再次执行)
- 前端添加时间格式验证和标准化

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-10 19:10:59 +08:00
parent 8e5a5cb679
commit 226d6724bd
2 changed files with 95 additions and 20 deletions

77
app.py
View File

@@ -2870,36 +2870,59 @@ def scheduled_task_worker():
print(f"[定时任务检查] 当前时间: {current_time}, 星期: {current_weekday}, 找到 {len(enabled_schedules)} 个启用的定时任务")
for schedule_config in enabled_schedules:
schedule_time = schedule_config['schedule_time']
schedule_time = schedule_config['schedule_time'].strip()
schedule_name = schedule_config.get('name', '未命名任务')
schedule_id = schedule_config['id']
# 标准化时间格式(处理 "8:00" -> "08:00"
if ':' in schedule_time:
h, m = schedule_time.split(':')
schedule_time = f"{int(h):02d}:{int(m):02d}"
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}': 设定时间={schedule_time}, 当前时间={current_time}, 匹配={schedule_time == current_time}")
# 检查时间是否匹配
if schedule_config['schedule_time'] != current_time:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 时间不匹配")
if schedule_time != current_time:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 时间不匹配 (设定:{schedule_time} vs 当前:{current_time})")
continue
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 时间匹配,继续检查...")
# 检查星期是否匹配
allowed_weekdays = [int(d) for d in schedule_config.get('weekdays', '1,2,3,4,5').split(',') if d.strip()]
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 允许星期: {allowed_weekdays}, 当前星期: {current_weekday}")
weekdays_str = schedule_config.get('weekdays', '1,2,3,4,5')
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' weekdays字段原始值: '{weekdays_str}'")
try:
allowed_weekdays = [int(d) for d in weekdays_str.split(',') if d.strip()]
except Exception as e:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 解析weekdays失败: {e}")
continue
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 允许星期: {allowed_weekdays}, 当前星期: {current_weekday} (1=周一,7=周日)")
if current_weekday not in allowed_weekdays:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 星期不匹配")
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 星期不匹配 ({current_weekday} not in {allowed_weekdays})")
continue
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 星期匹配,继续检查...")
# 检查今天是否已经执行过
# 检查今天是否已经执行过(同一天同一时间只执行一次)
last_run = schedule_config.get('last_run_at')
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 最后执行时间: {last_run}")
if last_run:
try:
last_run_date = datetime.strptime(last_run, '%Y-%m-%d %H:%M:%S').date()
if last_run_date == now.date():
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 今天已执行过")
continue # 今天已执行过
last_run_datetime = datetime.strptime(last_run, '%Y-%m-%d %H:%M:%S')
last_run_date = last_run_datetime.date()
last_run_time = last_run_datetime.strftime('%H:%M')
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 最后执行: 日期={last_run_date}, 时间={last_run_time}")
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 当前: 日期={now.date()}, 时间={current_time}")
# 检查是否在同一天的同一时间已执行过
if last_run_date == now.date() and last_run_time == schedule_time:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 今天此时间({schedule_time})已执行过")
continue
elif last_run_date == now.date() and last_run_time != schedule_time:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 提示: 今天已在{last_run_time}执行过,当前时间{schedule_time}可以再次执行")
except Exception as e:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 解析last_run时间失败: {e}")
@@ -2915,11 +2938,16 @@ def scheduled_task_worker():
print(f"[DEBUG] 定时任务 {schedule_config.get('name')}: enable_screenshot={enable_screenshot} (类型:{type(enable_screenshot).__name__})")
try:
account_ids = json.loads(schedule_config.get('account_ids', '[]') or '[]')
except:
account_ids_raw = schedule_config.get('account_ids', '[]') or '[]'
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' account_ids原始值: {account_ids_raw}")
account_ids = json.loads(account_ids_raw)
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 解析后account_ids: {account_ids}, 共{len(account_ids)}个账号")
except Exception as e:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 解析account_ids失败: {e}")
account_ids = []
if not account_ids:
print(f"[定时任务检查] 任务#{schedule_id} '{schedule_name}' 跳过: 未配置账号")
continue
print(f"[用户定时任务] 用户 {schedule_config.get('user_username', user_id)} 的任务 '{schedule_config.get('name', '')}' 开始执行")
@@ -2934,11 +2962,28 @@ def scheduled_task_worker():
)
started_count = 0
skipped_count = 0
print(f"[定时任务检查] 任务#{schedule_id} 准备启动{len(account_ids)}个账号")
print(f"[定时任务检查] user_accounts中的用户: {list(user_accounts.keys())}")
if user_id in user_accounts:
print(f"[定时任务检查] 用户{user_id}的账号: {list(user_accounts[user_id].keys())}")
else:
print(f"[定时任务检查] ⚠️ 用户{user_id}不在user_accounts中")
for account_id in account_ids:
if user_id not in user_accounts or account_id not in user_accounts[user_id]:
print(f"[定时任务检查] 检查账号 {account_id} (类型: {type(account_id)})")
if user_id not in user_accounts:
print(f"[定时任务检查] 跳过账号{account_id}: 用户{user_id}不在user_accounts中")
skipped_count += 1
continue
if account_id not in user_accounts[user_id]:
print(f"[定时任务检查] 跳过账号{account_id}: 账号不在user_accounts[{user_id}]中")
skipped_count += 1
continue
account = user_accounts[user_id][account_id]
if account.is_running:
print(f"[定时任务检查] 跳过账号{account_id}: 账号正在运行中")
skipped_count += 1
continue
account.is_running = True
@@ -2970,7 +3015,9 @@ def scheduled_task_worker():
status='completed'
)
print(f"[用户定时任务] 已启动 {started_count} 个账号")
print(f"[用户定时任务] 已启动 {started_count} 个账号,跳过 {skipped_count} 个账号")
if started_count == 0 and len(account_ids) > 0:
print(f"[用户定时任务] ⚠️ 警告所有账号都被跳过了请检查user_accounts状态")
except Exception as e:
print(f"[用户定时任务] 检查出错: {str(e)}")