From cf31c26af3131bd053d161a3b2155ed0cc47a050 Mon Sep 17 00:00:00 2001 From: John Elliott Date: Wed, 29 Apr 2026 13:03:00 -0400 Subject: [PATCH] Log non-critical chunk errors at V(2).Info instead of Error (#4928) Non-fatal scanning errors aren't really "errors" - they're consequences of the vicissitudes of scanning a ton of data. They're actionable if you're looking for them but if you're not they're extremely noisy. This commit downgrades them to only show up when you look for them. --- pkg/handlers/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/handlers/handlers.go b/pkg/handlers/handlers.go index 4f98eeef3..858feeac6 100644 --- a/pkg/handlers/handlers.go +++ b/pkg/handlers/handlers.go @@ -425,7 +425,7 @@ func handleChunksWithError( if isFatal(dataOrErr.Err) { return dataOrErr.Err } - ctx.Logger().Error(dataOrErr.Err, "non-critical error processing chunk") + ctx.Logger().V(2).Info("non-critical error processing chunk", "error", dataOrErr.Err) continue } if len(dataOrErr.Data) > 0 {