From 0d2f0be4ee595b0f227574d22310abb749e31319 Mon Sep 17 00:00:00 2001 From: Asger Noer <55031664+AsgerNoer@users.noreply.github.com> Date: Tue, 9 Nov 2021 12:34:43 +0100 Subject: [PATCH] fix: error field name color (#377) --- console.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.go b/console.go index c078382..a8e12b2 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) } }