From fe510f7e0ea124fc2c82544073f9958809e12c08 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Mon, 8 Jul 2024 14:00:56 +1000 Subject: [PATCH] style: Change log level from Info to Debug --- pkg/cannon/iterator/backfilling_checkpoint_iterator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cannon/iterator/backfilling_checkpoint_iterator.go b/pkg/cannon/iterator/backfilling_checkpoint_iterator.go index 2dee7d2a..ed13c48b 100644 --- a/pkg/cannon/iterator/backfilling_checkpoint_iterator.go +++ b/pkg/cannon/iterator/backfilling_checkpoint_iterator.go @@ -133,7 +133,7 @@ func (c *BackfillingCheckpoint) Next(ctx context.Context) (rsp *BackFillingCheck "next_epoch": rsp.Next, "direction": rsp.Direction, "look_aheads": rsp.LookAheads, - }).Info("Returning next epoch") + }).Debug("Returning next epoch") span.SetAttributes(attribute.Int64("next_epoch", int64(rsp.Next))) span.SetAttributes(attribute.String("direction", string(rsp.Direction)))