From c08261c1fb99b2882f3110daf35de43a3dd5d2f0 Mon Sep 17 00:00:00 2001 From: Natercio Moniz Date: Sun, 2 Aug 2026 11:07:29 +0100 Subject: [PATCH] minor error msg tweak --- internal/report.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/report.go b/internal/report.go index 0000959..e127f23 100644 --- a/internal/report.go +++ b/internal/report.go @@ -128,7 +128,7 @@ func BuildReport(ctx context.Context, reader RecordReader, writer ReportWriter, } if !rec.Kind().Valid() { - return fmt.Errorf("cannot process Kind(%d)", rec.Kind()) + return fmt.Errorf("found invalid Kind(%d)", rec.Kind()) } lastTimestamp = rec.Timestamp()