From 472ac6a334fe789074b10222c1855901640363a5 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Thu, 31 Oct 2024 12:43:08 -0400 Subject: [PATCH] chore: add missing error log newline --- src/api/services/ingestion.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/services/ingestion.go b/src/api/services/ingestion.go index e1a5503..c56135f 100644 --- a/src/api/services/ingestion.go +++ b/src/api/services/ingestion.go @@ -159,9 +159,9 @@ func (i *IngestionService) Init() { defer wg.Done() //atomic.AddUint64(&countFailed, 1) if err != nil { - fmt.Printf("ERROR: %s", err) + fmt.Printf("ERROR: %s\n", err) } else { - fmt.Printf("ERROR: %s: %s", res.Error.Type, res.Error.Reason) + fmt.Printf("ERROR: %s: %s\n", res.Error.Type, res.Error.Reason) } }, },