From fc2d0e2ad17f77f72ea42780aeb3bbecbd2a8240 Mon Sep 17 00:00:00 2001 From: Thorsten Klein Date: Fri, 13 Sep 2024 20:26:08 +0200 Subject: [PATCH] fix: logs --- pkg/datastore/ingest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/datastore/ingest.go b/pkg/datastore/ingest.go index 51b7d32..ae4cbce 100644 --- a/pkg/datastore/ingest.go +++ b/pkg/datastore/ingest.go @@ -153,7 +153,7 @@ func (s *Datastore) Ingest(ctx context.Context, datasetID string, name string, c docs, err := ingestionFlow.Run(ctx, bytes.NewReader(content)) if err != nil { - statusLog.With("status", "failed").Error("Failed to load documents", "error", err) + statusLog.With("status", "failed").Error("Ingestion Flow failed", "error", err) return nil, fmt.Errorf("failed to load documents: %w", err) }