diff --git a/backend/src/middleware/auth.ts b/backend/src/middleware/auth.ts index cde10fe..e5ac86f 100644 --- a/backend/src/middleware/auth.ts +++ b/backend/src/middleware/auth.ts @@ -4,7 +4,6 @@ import { logger } from "../globals"; export const authenticate = (req: Request, res: Response, next: NextFunction) => { const token = req.headers['authorization']; - logger.info(`Checking ${SECRET_KEY} against ${token}`); if (!token) { return res.status(403).json({ error: 'No token provided' }); }