Ausbau des Stack Trace in Info und InfoF.
This commit is contained in:
parent
d7bc6feff9
commit
69cf94bf1e
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue