(msg string, err error)
| 345 | } |
| 346 | |
| 347 | func (t *Task) LogFailedWithErr(msg string, err error) { |
| 348 | t.Logger.Printf("%s %s : %s", msg, i18n.GetMsgByKey("Failed"), err.Error()) |
| 349 | } |
| 350 | |
| 351 | func (t *Task) LogSuccess(msg string) { |
| 352 | t.Logger.Println(msg + " " + i18n.GetMsgByKey("Success")) |
no test coverage detected