No need to publicly log this

This commit is contained in:
Gabe Kangas 2021-07-28 12:37:26 -07:00
parent 8f32c13ca6
commit 031a848b7a

View file

@ -201,7 +201,7 @@ func makeExternalAPIUserFromRow(row *sql.Row) (*ExternalAPIUser, error) {
err := row.Scan(&id, &accessToken, &scopes, &displayName, &displayColor, &createdAt, &lastUsedAt)
if err != nil {
log.Errorln(err)
log.Debugln("unable to convert row to api user", err)
return nil, err
}