From 07b1541e01058f9d587d92d8418cdaf6b67b442b Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 9 Jan 2026 00:42:54 -0700 Subject: [PATCH] Add Logs --- routes/api/sling.js | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/api/sling.js b/routes/api/sling.js index 5b7e01a..a4abe6a 100644 --- a/routes/api/sling.js +++ b/routes/api/sling.js @@ -22,6 +22,7 @@ const fs = require("fs"); router.post("/message", global.apiAuth, async (req, res) => { const { channel, content } = req.body; + console.log('Sling chat message request received:', req.body); if (!channel || !content) { return res.status(400).json({ error: "Missing channel or content" }); }