diff --git a/server/endpoints.js b/server/endpoints.js index 2a588b6..758e41a 100644 --- a/server/endpoints.js +++ b/server/endpoints.js @@ -160,7 +160,6 @@ router.get('/logout', (req, res) => { router.get('/kick', (req, res) => { const ipAddress = req.query.ip; // Extract the IP address parameter from the query string // Terminate the WebSocket connection for the specified IP address - console.log(ipAddress); if(req.session.isAdminAuthenticated) { helpers.kickClient(ipAddress); }