(format string, v ...any)
| 337 | } |
| 338 | |
| 339 | func (t *Task) Logf(format string, v ...any) { |
| 340 | t.Logger.Printf(format, v...) |
| 341 | } |
| 342 | |
| 343 | func (t *Task) LogFailed(msg string) { |
| 344 | t.Logger.Println(msg + i18n.GetMsgByKey("Failed")) |
no outgoing calls
no test coverage detected