From c435c2727fb2bd99c080afdadc4a7d63690e7626 Mon Sep 17 00:00:00 2001 From: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Date: Thu, 24 Jul 2025 18:33:58 +0200 Subject: [PATCH] [management] Log BufferUpdateAccountPeers caller (#4217) --- management/server/peer.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/management/server/peer.go b/management/server/peer.go index b82a9cb80..3c40c6bb6 100644 --- a/management/server/peer.go +++ b/management/server/peer.go @@ -1291,6 +1291,8 @@ type bufferUpdate struct { } func (am *DefaultAccountManager) BufferUpdateAccountPeers(ctx context.Context, accountID string) { + log.WithContext(ctx).Tracef("buffer updating peers for account %s from %s", accountID, util.GetCallerName()) + bufUpd, _ := am.accountUpdateLocks.LoadOrStore(accountID, &bufferUpdate{}) b := bufUpd.(*bufferUpdate)