(msg string)
| 349 | } |
| 350 | |
| 351 | func (t *Task) LogSuccess(msg string) { |
| 352 | t.Logger.Println(msg + " " + i18n.GetMsgByKey("Success")) |
| 353 | } |
| 354 | func (t *Task) LogSuccessF(format string, v ...any) { |
| 355 | t.Logger.Println(fmt.Sprintf(format, v...) + i18n.GetMsgByKey("Success")) |
| 356 | } |
no outgoing calls
no test coverage detected