Skip to content

Commit

Permalink
Undo fmt.Fprint -> color.White.Fprint (#1903)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjk authored and balopat committed Apr 2, 2019
1 parent 05e15dd commit 1127984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/skaffold/kubernetes/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func (a *LogAggregator) streamRequest(ctx context.Context, headerColor color.Col
if _, err := headerColor.Fprintf(a.output, "%s ", header); err != nil {
return errors.Wrap(err, "writing pod prefix header to out")
}
if _, err := color.White.Fprint(a.output, string(line)); err != nil {
if _, err := fmt.Fprint(a.output, string(line)); err != nil {
return errors.Wrap(err, "writing pod log to out")
}
}
Expand Down

0 comments on commit 1127984

Please sign in to comment.