fix: error field name color (#377)
This commit is contained in:
parent
6973188a74
commit
0d2f0be4ee
|
@ -398,7 +398,7 @@ func consoleDefaultFormatFieldValue(i interface{}) string {
|
||||||
|
|
||||||
func consoleDefaultFormatErrFieldName(noColor bool) Formatter {
|
func consoleDefaultFormatErrFieldName(noColor bool) Formatter {
|
||||||
return func(i interface{}) string {
|
return func(i interface{}) string {
|
||||||
return colorize(fmt.Sprintf("%s=", i), colorRed, noColor)
|
return colorize(fmt.Sprintf("%s=", i), colorCyan, noColor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue