From 6ad297f66b8cd616db58b370116337a3be1bbf98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=A1?= =?UTF-8?q?=D0=B0=D1=84=D1=80=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Wed, 16 Apr 2025 18:21:28 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20internal/log/log.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/log/log.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/log/log.go b/internal/log/log.go index 16d8df87..629aa5a5 100644 --- a/internal/log/log.go +++ b/internal/log/log.go @@ -171,14 +171,14 @@ var emptyFormat string // Infof ... func Infof(format string, args ...interface{}) { if llevel.Load() >= 1 { - log(1, "INFO", "\x1b[36m", true, format, args...) + log(1, "INFO", "\x1b[38m;5;44m", true, format, args...) } } // Info ... func Info(args ...interface{}) { if llevel.Load() >= 1 { - log(1, "INFO", "\x1b[36m", false, emptyFormat, args...) + log(1, "INFO", "\x1b[38m;5;44m", false, emptyFormat, args...) } }