diff --git a/Log/log.go b/Log/log.go index fe1bcfc..3b2af2e 100644 --- a/Log/log.go +++ b/Log/log.go @@ -191,7 +191,7 @@ func Success(cStr string, args ...any) { if LevelInfo < logContext.LogLevel { return } - msg := fmt.Sprintf("%s [ Success ] %s", time.Now().Format(timeFormatLayout), cStr) + msg := fmt.Sprintf("%s [ Success ] %s", time.Now().Format(timeFormatLayout), cStr) logContext.msg <- fmt.Sprintf(msg, args...) logContext.wg.Add(1) }