Skip to content

Commit

Permalink
fix: error field name color (rs#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
asger-noer authored and pablitoc committed Apr 7, 2023
1 parent 480bb91 commit ef3e2b9
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 ef3e2b9

Please sign in to comment.