From 6751fb93a3dc1c0fbcd6296d282e768cf078dee6 Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 20 Sep 2025 20:07:17 +0200 Subject: [PATCH] Stringify the entire thing --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c0ebd60..aee1a18 100644 --- a/index.js +++ b/index.js @@ -145,7 +145,7 @@ async function sendSummary() { } const payload = { embeds: [ embed ] }; - console.log("Sending Discord message:", payload); + console.log("Sending Discord message:", JSON.stringify(payload, null, 2)); if (hook) await hook.send(payload); }