diff --git a/logger/logger.go b/logger/logger.go index c98421e..3c472c2 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -34,12 +34,12 @@ func (m *ML) sendMsgWithStack(message string) { } func (m *ML) Info(message string) { - m.sendMsgWithStack("Info: " + message) + m.sendMsg("Info: " + message) } func (m *ML) Infof(format string, a ...any) { msg := fmt.Sprintf(format, a) - m.sendMsgWithStack("Info: " + msg) + m.sendMsg("Info: " + msg) } func (m *ML) Warning(message string) {