diff --git a/cli/cliui/log.go b/cli/cliui/log.go index f76c3d7a1653e..290dd713d645c 100644 --- a/cli/cliui/log.go +++ b/cli/cliui/log.go @@ -35,7 +35,7 @@ func (m cliMessage) String() string { // Warn writes a log to the writer provided. func Warn(wtr io.Writer, header string, lines ...string) { _, _ = fmt.Fprint(wtr, cliMessage{ - Style: Styles.Warn, + Style: Styles.Warn.Copy(), Prefix: "WARN: ", Header: header, Lines: lines, @@ -63,7 +63,7 @@ func Infof(wtr io.Writer, fmtStr string, args ...interface{}) { // Error writes a log to the writer provided. func Error(wtr io.Writer, header string, lines ...string) { _, _ = fmt.Fprint(wtr, cliMessage{ - Style: Styles.Error, + Style: Styles.Error.Copy(), Prefix: "ERROR: ", Header: header, Lines: lines,