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" }); }