fix:修复遥测报错层级

This commit is contained in:
SengokuCola
2025-06-02 12:41:59 +08:00
parent 3e4dca8571
commit d6b360dd22

View File

@@ -122,7 +122,9 @@ class TelemetryHeartBeatTask(AsyncTask):
timeout=5, # 设置超时时间为5秒
)
except Exception as e:
logger.error(f"心跳发送失败: {e}")
# 你知道为什么设置成debug吗
# 因为我不想看到群里天天报错
logger.debug(f"心跳发送失败: {e}")
logger.debug(response)