Ausbau des Stack Trace in Info und InfoF.

This commit is contained in:
Marco Kittel 2025-06-24 22:33:34 +02:00
parent d7bc6feff9
commit 69cf94bf1e
1 changed files with 2 additions and 2 deletions

View File

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