Skip to content

Commit

Permalink
fix: error field name color (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
asger-noer committed Nov 9, 2021
1 parent 6973188 commit 0d2f0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console.go
Expand Up @@ -398,7 +398,7 @@ func consoleDefaultFormatFieldValue(i interface{}) string {

func consoleDefaultFormatErrFieldName(noColor bool) Formatter {
return func(i interface{}) string {
return colorize(fmt.Sprintf("%s=", i), colorRed, noColor)
return colorize(fmt.Sprintf("%s=", i), colorCyan, noColor)
}
}

Expand Down

0 comments on commit 0d2f0be

Please sign in to comment.