diff --git a/index.js b/index.js index 7106c92..0557233 100644 --- a/index.js +++ b/index.js @@ -592,7 +592,6 @@ app.put('/api/v1/user/route', (req, res) => { // Update route app.patch('/api/v1/user/update', async (req, res) => { // Update users server, port, auth, or secret via API key instead of session. Used for automated scripts const apiKey = req.headers['authorization'] ? req.headers['authorization'].replace('Bearer ', '') : null; - console.log(`API Key: ${apiKey}`); if (!apiKey) { res.status(401).json({ error: 'API Key is required!' }); return;