Browse Source

No need to publicly log this

pull/1279/head
Gabe Kangas 4 years ago
parent
commit
031a848b7a
  1. 2
      core/user/externalAPIUser.go

2
core/user/externalAPIUser.go

@ -201,7 +201,7 @@ func makeExternalAPIUserFromRow(row *sql.Row) (*ExternalAPIUser, error) { @@ -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
}

Loading…
Cancel
Save