We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5f010d commit 8a58224Copy full SHA for 8a58224
sentinel/chain_poller_service/chain_poller_service.go
@@ -196,7 +196,12 @@ func (eps *ChainPollerService) pollCycle() {
196
return
197
}
198
199
- eps.config.Logger.Debug().Int("Number of fetched logs", len(logs)).Msg(("Fetched logs from blockchain"))
+ eps.config.Logger.Debug().
200
+ Int("Number of fetched logs", len(logs)).
201
+ Uint64("FromBlock", fromBlock.Uint64()).
202
+ Uint64("ToBlock", toBlock).
203
+ Uint64("Number of blocks", toBlock-fromBlock.Uint64()).
204
+ Msg(("Fetched logs from blockchain"))
205
206
// Broadcast each log to subscribers
207
for _, log := range logs {
0 commit comments