From 7aa0ebf36644eeb00e78a15708a664b20647f810 Mon Sep 17 00:00:00 2001 From: Pau Costa Date: Fri, 2 Feb 2024 23:44:29 +0100 Subject: [PATCH] :bug: Forgot a console log... Signed-off-by: Pau Costa --- server/src/entity/User.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/entity/User.ts b/server/src/entity/User.ts index ee4b330..2927f71 100644 --- a/server/src/entity/User.ts +++ b/server/src/entity/User.ts @@ -33,7 +33,6 @@ export class User { static async hashPassword(password: string){ - console.log(`Hashing password ${password}, with salt rounds ${process.env.SALT_ROUNDS}`) return await bcrypt.hash(password, parseInt(process.env.SALT_ROUNDS)) }