Documentation
¶
Overview ¶
Package term same as https://github.com/kubernetes-sigs/kind/tree/master/pkg/internal/env
Index ¶
- func IsSmartTerminal(w io.Writer) bool
- func IsTerminal(w io.Writer) bool
- type Logger
- func (l *Logger) ColorEnabled() bool
- func (l *Logger) Error(message string)
- func (l *Logger) Errorf(format string, args ...interface{})
- func (l *Logger) SetVerbosity(verbosity log.Level)
- func (l *Logger) SetWriter(w io.Writer)
- func (l *Logger) V(level log.Level) log.InfoLogger
- func (l *Logger) Warn(message string)
- func (l *Logger) Warnf(format string, args ...interface{})
- type Spinner
- type Status
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsSmartTerminal ¶
IsSmartTerminal returns true if the writer w is a terminal AND we think that the terminal is smart enough to use VT escape codes etc.
func IsTerminal ¶
IsTerminal returns true if the writer w is a terminal.
Types ¶
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger is the kind cli's log.Logger implementation nolint:maligned
func (*Logger) ColorEnabled ¶
ColorEnabled returns true if the caller is OK to write colored output.
func (*Logger) SetVerbosity ¶
SetVerbosity sets the loggers verbosity.
func (*Logger) V ¶
func (l *Logger) V(level log.Level) log.InfoLogger
V is part of the log.Logger interface.
type Spinner ¶
type Spinner struct {
// contains filtered or unexported fields
}
Spinner is a simple and efficient CLI loading spinner used by kind It is simplistic and assumes that the line length will not change.
func NewSpinner ¶
NewSpinner initializes and returns a new Spinner that will write to w.
type Status ¶
type Status struct {
// contains filtered or unexported fields
}
Status is used to track ongoing status in a CLI, with a nice loading spinner when attached to a terminal.
func StatusForLogger ¶
StatusForLogger returns a new status object for the logger l, if l is the kind cli logger and the writer is a Spinner, that spinner will be used for the status.