Documentation
¶
Index ¶
- type ColorScheme
- type LogWrap
- func (l *LogWrap) Debugf(format string, args ...interface{})
- func (l *LogWrap) Errorf(format string, args ...interface{})
- func (l *LogWrap) Fatalf(format string, args ...interface{})
- func (l *LogWrap) Infof(format string, args ...interface{})
- func (l *LogWrap) Panicf(format string, args ...interface{})
- func (l *LogWrap) Printf(format string, args ...interface{})
- func (l *LogWrap) Tracef(format string, args ...interface{})
- func (l *LogWrap) Warnf(format string, args ...interface{})
- func (l *LogWrap) Warningf(format string, args ...interface{})
- type LoggingContext
- type TextFormatter
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ColorScheme ¶ added in v0.4.0
type LogWrap ¶ added in v0.7.0
type LogWrap struct {
// contains filtered or unexported fields
}
type LoggingContext ¶ added in v0.7.0
type LoggingContext interface {
String() string
}
type TextFormatter ¶
type TextFormatter struct { // Set to true to bypass checking for a TTY before outputting colors. ForceColors bool // Force disabling colors. For a TTY colors are enabled by default. DisableColors bool // Force formatted layout, even for non-TTY output. ForceFormatting bool // Disable timestamp logging. useful when output is redirected to logging // system that already adds timestamps. DisableTimestamp bool // Disable the conversion of the log levels to uppercase DisableUppercase bool // Enable logging the full timestamp when a TTY is attached instead of just // the time passed since beginning of execution. FullTimestamp bool // Timestamp format to use for display when a full timestamp is printed. TimestampFormat string // The fields are sorted by default for a consistent output. For applications // that log extremely frequently and don't use the JSON formatter this may not // be desired. DisableSorting bool // Wrap empty fields in quotes if true. QuoteEmptyFields bool // Can be set to the override the default quoting character " // with something else. For example: ', or `. QuoteCharacter string // Pad msg field with spaces on the right for display. // The value for this parameter will be the size of padding. // Its default value is zero, which means no padding will be applied for msg. SpacePadding int // The prefixes will be padded to be the length specified by this value. MinPrefixWidth int sync.Once // contains filtered or unexported fields }
func (*TextFormatter) SetColorScheme ¶ added in v0.4.0
func (f *TextFormatter) SetColorScheme(colorScheme *ColorScheme)
Click to show internal directories.
Click to hide internal directories.