fix: restore manager info logs

This commit is contained in:
ngfchl
2026-07-07 08:49:23 +08:00
parent e3e9893812
commit 05d8f29d5f
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
username = user.username or ""
first_name = user.first_name or ""
text = msg.text
logger.debug(f"💬 聊天消息 [{username or first_name or user.id}]: {text[:80]}")
logger.info(f"💬 聊天消息 [{username or first_name or user.id}]: {text[:120]}")
# === 防刷屏 ===
now = datetime.now().timestamp()