Documentation ¶
Index ¶
- type Logger
- type NopLogger
- func (NopLogger) Actionf(format string, a ...interface{})
- func (NopLogger) Failuref(format string, a ...interface{})
- func (NopLogger) Generatef(format string, a ...interface{})
- func (NopLogger) Successf(format string, a ...interface{})
- func (NopLogger) Waitingf(format string, a ...interface{})
- func (NopLogger) Warningf(format string, a ...interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger interface { // Actionf logs a formatted action message. Actionf(format string, a ...interface{}) // Generatef logs a formatted generate message. Generatef(format string, a ...interface{}) // Waitingf logs a formatted waiting message. Waitingf(format string, a ...interface{}) // Successf logs a formatted success message. Successf(format string, a ...interface{}) // Warningf logs a formatted warning message. Warningf(format string, a ...interface{}) // Failuref logs a formatted failure message. Failuref(format string, a ...interface{}) }
Click to show internal directories.
Click to hide internal directories.