Skip to content

Commit

Permalink
chore: add missing error log newline
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 31, 2024
1 parent b3aea7b commit 472ac6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/services/ingestion.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
},
},
Expand Down

0 comments on commit 472ac6a

Please sign in to comment.