feat: 增加运行日志(不记录敏感信息) - 启动摘要:端口/间隔/重试/超时/并发/Telegram 状态/内置平台/账号数/数据库路径 - 检查结果:成功余额、认证失败禁用、失败原因 - 提醒状态机:触发提醒/余额恢复 - API 操作:登录、平台/账号增删改、设置修改、密码修改 - Telegram 发送成功、请求耗时(DEBUG) - 全部日志不含 apikey/token/密码

This commit is contained in:
2026-08-05 10:21:05 +08:00
parent c4f5c64804
commit 96e937e523
6 changed files with 35 additions and 2 deletions
+1
View File
@@ -23,6 +23,7 @@ def send_message(bot_token: str, chat_id: str, text: str) -> bool:
timeout=10,
)
if resp.status_code == 200:
logger.info("Telegram 消息已发送(%d 字符)", len(text))
return True
logger.error("Telegram 发送失败 status=%s body=%s", resp.status_code, resp.text[:200])
except requests.RequestException as exc: