[chore] Update more log calls to include context (#1517)

In #1476 we updated log.WithFields() but we forgot about
log.WithField(). Also updates a few explicit log.Entry{} creations.
This commit is contained in:
Daenney 2023-02-17 20:05:43 +01:00 committed by GitHub
commit b4d18887d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 19 additions and 12 deletions

View file

@ -69,7 +69,8 @@ func (f *federatingDB) NewID(ctx context.Context, t vocab.Type) (idURL *url.URL,
if err != nil {
return nil, err
}
l := log.WithField("newID", i)
l := log.WithContext(ctx).
WithField("newID", i)
l.Debug("entering NewID")
}