Skip to content

Commit

Permalink
fix: add carriage return between events
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaunet committed Nov 6, 2023
1 parent b44df58 commit 728f1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func (a *App) getEvents(context context.Context, groupName string, streamName st
return err
}
timeT := time.Unix(*k.Timestamp/1000, 0)
fmt.Printf("%s -- %s -- %s ", timeT, lineOfLog.Kubernetes.ContainerName, lineOfLog.Log)
fmt.Printf("%s -- %s -- %s\n", timeT, lineOfLog.Kubernetes.ContainerName, lineOfLog.Log)
}

a.appLog.Debugln(" nextToken=", nextToken)
Expand Down

0 comments on commit 728f1ae

Please sign in to comment.