From d9587c6d16455cc04d89ccca1d19df7637db142f Mon Sep 17 00:00:00 2001 From: Roy-blox Date: Sun, 8 Dec 2024 14:36:48 +0200 Subject: [PATCH] more logs --- beacon/goclient/attest.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beacon/goclient/attest.go b/beacon/goclient/attest.go index b6a954bf64..8be361794f 100644 --- a/beacon/goclient/attest.go +++ b/beacon/goclient/attest.go @@ -67,6 +67,8 @@ func (gc *GoClient) GetAttestationData(slot phase0.Slot, committeeIndex phase0.C // Caching resulting value here (as part of inflight request) guarantees only 1 request // will ever be done for a given slot. gc.attestationDataCache.Set(slot, resp.Data, ttlcache.DefaultTTL) + gc.log.Debug("called attestation data and set data to cache", + zap.Uint64("slot", uint64(slot))) return resp.Data, nil })