From 8effc77788a201efe87636c94e16436da26b5199 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Tue, 17 Sep 2024 19:35:47 +0000 Subject: [chore] improved federatingdb logging in cases of unknown iri / types (#3313) * improved federatingdb logging in cases of unknown iri / types, add new log methods * whoops; forgot to wrap log argument in serialize{} ! * use debug instead of warn level * switch last entry to Debug --- internal/federation/federatingdb/owns.go | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'internal/federation/federatingdb/owns.go') diff --git a/internal/federation/federatingdb/owns.go b/internal/federation/federatingdb/owns.go index cc3bb7d5d..3da41dd61 100644 --- a/internal/federation/federatingdb/owns.go +++ b/internal/federation/federatingdb/owns.go @@ -23,7 +23,6 @@ import ( "fmt" "net/url" - "codeberg.org/gruf/go-kv" "github.com/superseriousbusiness/gotosocial/internal/config" "github.com/superseriousbusiness/gotosocial/internal/db" "github.com/superseriousbusiness/gotosocial/internal/gtscontext" @@ -36,15 +35,11 @@ import ( // the database has an entry for the IRI. // The library makes this call only after acquiring a lock first. func (f *federatingDB) Owns(ctx context.Context, id *url.URL) (bool, error) { - l := log.WithContext(ctx). - WithFields(kv.Fields{ - {"id", id}, - }...) - l.Debug("entering Owns") + log.DebugKV(ctx, "id", id) // if the id host isn't this instance host, we don't own this IRI if host := config.GetHost(); id.Host != host { - l.Tracef("we DO NOT own activity because the host is %s not %s", id.Host, host) + log.Tracef(ctx, "we DO NOT own activity because the host is %s not %s", id.Host, host) return false, nil } @@ -85,7 +80,7 @@ func (f *federatingDB) Owns(ctx context.Context, id *url.URL) (bool, error) { // an actual error happened return false, fmt.Errorf("database error fetching account with username %s: %s", username, err) } - l.Debugf("we own url %s", id.String()) + log.Debugf(ctx, "we own url %s", id) return true, nil } @@ -102,7 +97,7 @@ func (f *federatingDB) Owns(ctx context.Context, id *url.URL) (bool, error) { // an actual error happened return false, fmt.Errorf("database error fetching account with username %s: %s", username, err) } - l.Debugf("we own url %s", id.String()) + log.Debugf(ctx, "we own url %s", id) return true, nil } @@ -119,7 +114,7 @@ func (f *federatingDB) Owns(ctx context.Context, id *url.URL) (bool, error) { // an actual error happened return false, fmt.Errorf("database error fetching account with username %s: %s", username, err) } - l.Debugf("we own url %s", id.String()) + log.Debugf(ctx, "we own url %s", id) return true, nil } @@ -148,7 +143,7 @@ func (f *federatingDB) Owns(ctx context.Context, id *url.URL) (bool, error) { // an actual error happened return false, fmt.Errorf("database error fetching block with id %s: %s", blockID, err) } - l.Debugf("we own url %s", id.String()) + log.Debugf(ctx, "we own url %s", id) return true, nil } -- cgit v1.2.3