From 69cf94bf1eef720420a82d60269d2c7af2456a5c Mon Sep 17 00:00:00 2001 From: Marco Kittel Date: Tue, 24 Jun 2025 22:33:34 +0200 Subject: [PATCH] Ausbau des Stack Trace in Info und InfoF. --- logger/logger.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {