From 549fe94e37caf2370f0e932c042b63482815a540 Mon Sep 17 00:00:00 2001 From: Acha Bill Date: Tue, 27 Feb 2024 17:16:12 +0100 Subject: [PATCH] fix: wip --- pkg/check/redundancy/redundancy.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/check/redundancy/redundancy.go b/pkg/check/redundancy/redundancy.go index c701b53b8..fdb3b25ad 100644 --- a/pkg/check/redundancy/redundancy.go +++ b/pkg/check/redundancy/redundancy.go @@ -142,6 +142,7 @@ func (c *Check) uploadChunks(ctx context.Context, client *bee.Client, chunks []s c.logger.Infof("uploading %d chunks out of %d", len(indices), len(chunks)) for i, j := range indices { + c.logger.Infof("uploading chunk %d of %d", i+1, len(indices)) _, err := client.UploadChunk(ctx, chunks[j].Data(), api.UploadOptions{ BatchID: batchID, Direct: true,