Documentation ¶
Index ¶
- func Configure(noProgress, quiet, verbose, json, panic bool, assumeYes bool, ...)
- func Debug(msg string)
- func Debugf(format string, args ...interface{})
- func Die(msg string)
- func Dief(format string, args ...interface{})
- func EndProgress()
- func Log(msg string)
- func Logf(format string, args ...interface{})
- func Logl(level string, msg string)
- func Loglf(level string, format string, args ...interface{})
- func NewStateConsumer() *state.Consumer
- func Notice(header string, lines []string)
- func Opf(format string, args ...interface{})
- func PauseProgress()
- func Progress(alpha float64)
- func ProgressLabel(label string)
- func ProgressScale(scale float64)
- func ResumeProgress()
- func StartProgress()
- func StartProgressWithTotalBytes(totalBytes int64)
- func Statf(format string, args ...interface{})
- func Warn(msg string)
- func Warnf(format string, args ...interface{})
- func YesNo(question string) bool
- type ProgressTheme
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Debug ¶
func Debug(msg string)
Debug messages are like Info messages, but printed only when verbose
func Debugf ¶
func Debugf(format string, args ...interface{})
Debugf is a formatted variant of Debug
func Die ¶
func Die(msg string)
Die exits with a non-zero exit code after giving a reson to the client
func Logf ¶
func Logf(format string, args ...interface{})
Logf sends a formatted informational message to the client
func NewStateConsumer ¶
NewStateConsumer returns an implementor of `pwr.StateConsumer` that prints directly to the console via butler's logging functions.
func Notice ¶
Notice prints a box with important info in it. UX style guide: don't abuse it or people will stop reading it.
func Opf ¶
func Opf(format string, args ...interface{})
Opf prints a formatted string informing the user on what operation we're doing
func Progress ¶
func Progress(alpha float64)
Progress sets the completion of a task whose progress is being printed It only has an effect if StartProgress was already called.
func ProgressLabel ¶
func ProgressLabel(label string)
ProgressLabel sets the string printed next to the progress indicator
func ProgressScale ¶
func ProgressScale(scale float64)
ProgressScale sets the scale on which the progress bar is displayed. This can be useful when the progress value evolves in another interval than [0, 1]
func ResumeProgress ¶
func ResumeProgress()
ResumeProgress resumes printing the progress bar after PauseProgress was called
func StartProgress ¶
func StartProgress()
StartProgress begins a period in which progress is regularly printed
func StartProgressWithTotalBytes ¶ added in v1.3.0
func StartProgressWithTotalBytes(totalBytes int64)
StartProgressWithTotalBytes begins a period in which progress is regularly printed, and bps (bytes per second) is estimated from the total size given