diff --git a/userapi/storage/accounts/sqlite3/storage.go b/userapi/storage/accounts/sqlite3/storage.go index eaed0d493..4b66304c2 100644 --- a/userapi/storage/accounts/sqlite3/storage.go +++ b/userapi/storage/accounts/sqlite3/storage.go @@ -19,7 +19,6 @@ import ( "database/sql" "encoding/json" "errors" - "fmt" "strconv" "sync" @@ -135,9 +134,7 @@ func (d *Database) SetPassword( if err != nil { return err } - fmt.Println("PASSWORD:", localpart, plaintextPassword, hash) err = d.accounts.updatePassword(ctx, localpart, hash) - fmt.Println("ERROR:", err) return err }