Errorf prints to Stderr, regardless of FlagVerbose.
(format string, args ...interface{})
| 367 | |
| 368 | // Errorf prints to Stderr, regardless of FlagVerbose. |
| 369 | func Errorf(format string, args ...interface{}) { |
| 370 | fmt.Fprintf(Stderr, format, args...) |
| 371 | } |
| 372 | |
| 373 | // Printf prints to Stderr if FlagVerbose, and is silent otherwise. |
| 374 | func Printf(format string, args ...interface{}) { |
no outgoing calls
no test coverage detected