Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // NopPrinter is a no-op printer. // // This generally aligns with the --verbose flag not being set. NopPrinter = nopPrinter{} )
Functions ¶
This section is empty.
Types ¶
type Printer ¶
type Printer interface { // Printf prints a new verbose message. // // Leading and trailing newlines are not respected. // // Callers should not rely on the print calls being reliable, i.e. errors to // a backing Writer will be ignored. Printf(format string, args ...interface{}) }
Printer prints verbose messages.
Click to show internal directories.
Click to hide internal directories.