Fixed Logger in Method Critical

This commit is contained in:
Marco Kittel 2025-06-29 00:02:03 +02:00
parent 4c6c751d87
commit a0ab9a6f34
1 changed files with 1 additions and 2 deletions

View File

@ -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) {