mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-06 17:03:15 -06:00
[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:
parent
d39280ec33
commit
b4d18887d3
9 changed files with 19 additions and 12 deletions
|
|
@ -42,7 +42,7 @@ import (
|
|||
//
|
||||
// The library makes this call only after acquiring a lock first.
|
||||
func (f *federatingDB) Update(ctx context.Context, asType vocab.Type) error {
|
||||
l := log.Entry{}
|
||||
l := log.Entry{}.WithContext(ctx)
|
||||
|
||||
if log.Level() >= level.DEBUG {
|
||||
i, err := marshalItem(asType)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue