From 9ec7713e6f23d107ad71ff1e6e816cb6de09d415 Mon Sep 17 00:00:00 2001 From: OoO Date: Wed, 13 May 2026 12:25:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=9C=20AiderHeal=20=E9=9D=9C=E9=BB=98?= =?UTF-8?q?=E5=A4=B1=E6=95=97=E8=A8=BA=E6=96=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/aider_heal_executor.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/aider_heal_executor.py b/services/aider_heal_executor.py index 40f34df..6571345 100644 --- a/services/aider_heal_executor.py +++ b/services/aider_heal_executor.py @@ -142,8 +142,9 @@ def _http_get_json(url: str, timeout: int = 10) -> Optional[Dict[str, Any]]: resp = requests.get(url, timeout=timeout) if resp.status_code == 200: return resp.json() + logger.debug("[AiderHeal] health probe returned status=%s url=%s", resp.status_code, url) except Exception: - pass + logger.debug("[AiderHeal] health probe request failed url=%s", url, exc_info=True) return None @@ -186,7 +187,7 @@ def _notify_telegram(message_html: str) -> None: "payload": {"raw_message_html": message_html}, }, admin_chat_ids=[TELEGRAM_CHAT_ID]) except Exception: - pass + logger.warning("[AiderHeal] EventRouter notification dispatch failed", exc_info=True) def _git_cmd(