(message string)
| 556 | } |
| 557 | |
| 558 | func (o *Flags) WriteOutput(message string) (err error) { |
| 559 | fmt.Println(message) |
| 560 | if o.Output != "" { |
| 561 | err = CreateOutputFile(message, o.Output) |
| 562 | } |
| 563 | return |
| 564 | } |
| 565 | |
| 566 | func AppendMessage(message string, newMessage string) (ret string) { |
| 567 | if message != "" { |
no test coverage detected