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"
"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
}