From fb25baf10024fbe6e96aadbb34af5f66f6575afe Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Fri, 16 Jun 2023 15:55:22 +0200 Subject: [PATCH] Do not use white color as string output (#489) ## Changes Do not use white color as string output --- cmd/root/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root/logger.go b/cmd/root/logger.go index 1a815632..89d70760 100644 --- a/cmd/root/logger.go +++ b/cmd/root/logger.go @@ -60,7 +60,7 @@ func (l *friendlyHandler) Handle(ctx context.Context, rec slog.Record) error { msg := fmt.Sprintf("%s %s %s%s\n", color.MagentaString(t), l.coloredLevel(rec), - color.HiWhiteString(rec.Message), + rec.Message, attrs) _, err := l.w.Write([]byte(msg)) return err