db/account: removed debug log

This commit is contained in:
CPunch 2023-12-06 16:40:06 -06:00
parent 335fdb417c
commit 141858d6c3
1 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package db
import (
"errors"
"log"
"golang.org/x/crypto/bcrypt"
@ -62,7 +61,6 @@ func (db *DBHandler) TryLogin(Login, Password string) (*Account, error) {
var account Account
row.Next()
if err := sqlscan.ScanRow(&account, row); err != nil {
log.Printf("Error scanning row: %v", err)
return nil, ErrLoginInvalidID
}