Log logs a string with no formatting verbs.
(str string)
| 28 | |
| 29 | // Log logs a string with no formatting verbs. |
| 30 | func (s *SimpleTask) Log(str string) { |
| 31 | s.Logf("%s", str) |
| 32 | } |
| 33 | |
| 34 | // Logf logs some formatted string, which is interpreted according to the rules |
| 35 | // defined in package "fmt". |