refactor: 🎨 strip content: from the front of log lines
CI / Build and Push (push) Successful in 5s

This commit is contained in:
2026-01-31 15:31:56 +00:00
parent 8b88c2689f
commit f9b3fb3dec
+1 -1
View File
@@ -38,7 +38,7 @@ def discord_payload_to_log_lines(payload: dict) -> list[str]:
content = payload.get("content") content = payload.get("content")
if isinstance(content, str) and content.strip(): if isinstance(content, str) and content.strip():
lines.append(f"content: {content.strip()}") lines.append(content.strip())
for embed in payload.get("embeds") or []: for embed in payload.get("embeds") or []:
if not isinstance(embed, dict): if not isinstance(embed, dict):