From 61adf0f7429d1f5acd8c7caa181ef61632ab440f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <35407363+EniumRaphael@users.noreply.github.com> Date: Sun, 31 Aug 2025 14:48:47 +0200 Subject: [PATCH] fix(routes/login): remove debug message from login.ts - The debug message was not anymore useful (and not the better way to speak to my console) --- src/auth/src/routes/login.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/auth/src/routes/login.ts b/src/auth/src/routes/login.ts index 3ca8448..b0f679c 100644 --- a/src/auth/src/routes/login.ts +++ b/src/auth/src/routes/login.ts @@ -28,7 +28,6 @@ const route: FastifyPluginAsync = async (fastify, opts): Promise => { async function(req, res) { try { let { name, password } = req.body; - console.log("HELLOO FDP"); let user = this.db.getUserFromName(name); // does the user exist