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)
This commit is contained in:
Raphaël 2025-08-31 14:48:47 +02:00 committed by Maix0
parent 964fe908a6
commit 61adf0f742

View file

@ -28,7 +28,6 @@ const route: FastifyPluginAsync = async (fastify, opts): Promise<void> => {
async function(req, res) { async function(req, res) {
try { try {
let { name, password } = req.body; let { name, password } = req.body;
console.log("HELLOO FDP");
let user = this.db.getUserFromName(name); let user = this.db.getUserFromName(name);
// does the user exist // does the user exist