We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8111810 commit fc38d6cCopy full SHA for fc38d6c
1 file changed
block/internal/pruner/pruner.go
@@ -155,6 +155,7 @@ func (p *Pruner) pruneBlocks() error {
155
}
156
157
158
+ p.logger.Debug().Uint64("pruned_up_to_height", batchEnd).Msg("pruned blocks up to height")
159
return nil
160
161
@@ -239,6 +240,7 @@ func (p *Pruner) pruneMetadata() error {
239
240
return fmt.Errorf("failed to set last pruned block height: %w", err)
241
242
243
+ p.logger.Debug().Uint64("pruned_to", batchEnd).Msg("pruned state height metadata up to height")
244
245
246
0 commit comments