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...) } }