Skip to content

Commit

Permalink
Merge pull request #6635 from rhatdan/logs
Browse files Browse the repository at this point in the history
Add <return> to lines returned in podman-remote logs
  • Loading branch information
openshift-merge-robot authored Jun 16, 2020
2 parents 89630ad + e67dd9f commit e4e10df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/domain/infra/tunnel/containers.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ func (ic *ContainerEngine) ContainerLogs(_ context.Context, nameOrIDs []string,
case <-ctx.Done():
return err
case line := <-outCh:
_, _ = io.WriteString(options.Writer, line)
_, _ = io.WriteString(options.Writer, line+"\n")
}
}
}
Expand Down

0 comments on commit e4e10df

Please sign in to comment.