Println conditionally outputs a message to Stderr
(args ...interface{})
| 21 | |
| 22 | // Println conditionally outputs a message to Stderr |
| 23 | func Println(args ...interface{}) { |
| 24 | if Verbose { |
| 25 | fmt.Fprintln(output, args...) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // Printf conditionally outputs a formatted message to Stderr |
| 30 | func Printf(format string, args ...interface{}) { |
no outgoing calls