diff --git a/insight b/insight deleted file mode 100644 index 6f432d0..0000000 Binary files a/insight and /dev/null differ diff --git a/internal/publisher/publisher.go b/internal/publisher/publisher.go index 984115a..08e3334 100644 --- a/internal/publisher/publisher.go +++ b/internal/publisher/publisher.go @@ -5,6 +5,7 @@ import ( "crypto/tls" "encoding/json" "fmt" + "math/rand/v2" "net" "strings" "sync" @@ -97,6 +98,9 @@ func (p *Publisher) initialize() error { } func (p *Publisher) PublishBlockData(blockData []common.BlockData) error { + if rand.Float32() < 0.3 { + log.Debug().Msgf("Publishing %d block data", len(blockData)) + } return p.publishBlockData(blockData, false) }