adding debug output for auth endpoint for client development

This commit is contained in:
2026-01-14 02:05:18 +01:00
parent fec62e3f79
commit 1950ea98a1
+2
View File
@@ -22,6 +22,8 @@ app.use(
app.get("/v1/auth", (req, res) => {
let logTime = getLogTime()
console.log(logTime);
console.log(req.headers);
// Simple ratelimit
if(ipLog[req.headers["x-forwarded-for"] != undefined ? req.headers["x-forwarded-for"] : req.ip] !== undefined){