Skip to content

Commit

Permalink
Fix incorrect printing statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdappollonio committed Sep 3, 2024
1 parent 3825c3e commit debbb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/utilities/utilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func ConsumeStream(url string) {
scanner := bufio.NewScanner(resp.Body)
for scanner.Scan() {
data := scanner.Text()
log.Info().Msgf(data)
log.Info().Msg(data)
}

if err := scanner.Err(); err != nil {
Expand Down

0 comments on commit debbb13

Please sign in to comment.