fix: include case details in webhook failure warning log

This commit is contained in:
2026-05-16 17:08:33 +00:00
parent a0fab1f6de
commit d87f9c5a5f

View File

@@ -110,4 +110,7 @@ async def emit_case_status_webhook(
timeout=5.0,
)
except Exception as exc:
logger.warning("emit_case_status_webhook failed: %s", exc)
logger.warning(
"emit_case_status_webhook failed for case %s (%s%s): %s",
case_number, old_status, new_status, exc,
)