From e0fca88297a9730b3de1771b6ceada6bfa28a614 Mon Sep 17 00:00:00 2001 From: Asger Noer <55031664+AsgerNoer@users.noreply.github.com> Date: Wed, 3 Nov 2021 18:48:05 +0100 Subject: [PATCH] fix: error field name color --- console.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.go b/console.go index c0783824..a8e12b23 100644 --- a/console.go +++ b/console.go @@ -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) } }