mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-23 06:43:09 -06:00
Remove debug logging
This commit is contained in:
parent
a45c8cbe78
commit
3bf42a3021
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue