Remove debug logging

This commit is contained in:
Neil Alexander 2020-09-04 14:07:51 +01:00
parent a45c8cbe78
commit 3bf42a3021
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -19,7 +19,6 @@ import (
"database/sql" "database/sql"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt"
"strconv" "strconv"
"sync" "sync"
@ -135,9 +134,7 @@ func (d *Database) SetPassword(
if err != nil { if err != nil {
return err return err
} }
fmt.Println("PASSWORD:", localpart, plaintextPassword, hash)
err = d.accounts.updatePassword(ctx, localpart, hash) err = d.accounts.updatePassword(ctx, localpart, hash)
fmt.Println("ERROR:", err)
return err return err
} }