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)) }