Fixed Args for Sprintf Function.

This commit is contained in:
Marco Kittel 2025-06-28 17:31:34 +02:00
parent 3fccbe2237
commit 531bb5ba41
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ func (m *ML) Info(message string) {
}
func (m *ML) Infof(format string, a ...any) {
msg := fmt.Sprintf(format, a)
msg := fmt.Sprintf(format, a...)
m.sendMsg("Info: " + msg)
}