remove dbg output for login

This commit is contained in:
Joe Ardent 2023-07-08 22:06:50 -07:00
parent 840fba6e92
commit 3532f3daf7
1 changed files with 0 additions and 2 deletions

View File

@ -75,8 +75,6 @@ pub async fn post_login(
LoginErrorKind::Unknown
})?;
dbg!(&user);
let verifier = Argon2::default();
let hash = PasswordHash::new(&user.pwhash).map_err(|_| LoginErrorKind::Internal)?;
match verifier.verify_password(pw.as_bytes(), &hash) {