🐛 Forgot a console log...

Signed-off-by: Pau Costa <mico@micodev.es>
pull/1/head
Pau Costa Ferrer 2024-02-02 23:44:29 +01:00
parent 46dd4ccb91
commit 7aa0ebf366
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ export class User {
static async hashPassword(password: string){ 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)) return await bcrypt.hash(password, parseInt(process.env.SALT_ROUNDS))
} }