We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9416f08 commit 33b45f7Copy full SHA for 33b45f7
2 files changed
indexer/cronjob/mirror.go
@@ -246,12 +246,11 @@ func (c *mirrorCronJob) mirrorEpoch(epoch int64) error {
246
return nil
247
}
248
249
- logger.Debug("mirroring %d txs", len(txs))
+ logger.Info("mirroring %d txs", len(txs))
250
if err := c.mirrorTxs(txs, epoch); err != nil {
251
return err
252
253
254
- logger.Debug("successfully mirrored %d txs", len(txs))
255
256
257
indexer/cronjob/voting.go
@@ -124,7 +124,7 @@ func (c *votingCronjob) Call() error {
124
if err != nil {
125
126
127
- logger.Debug("Submitted votes for epoch %d", e)
+ logger.Info("Submitted votes for epoch %d", e)
128
129
// Update state
130
state.NextDBIndex = uint64(e + 1)
0 commit comments