diff --git a/logger/logger.go b/logger/logger.go index 302dc06..59824a5 100644 --- a/logger/logger.go +++ b/logger/logger.go @@ -47,8 +47,7 @@ func (m *ML) Warning(message string) { } func (m *ML) Critical(message string) { - stack := string(debug.Stack()) - m.sendMsgWithStack("Critical: " + message + indentStacktrace(stack)) + m.sendMsgWithStack("Warning: " + message) } func (m *ML) Fatal(message string) {