Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var DefaultOptions = Options{
Level: LevelDefault,
Format: FormatDefault,
}
DefaultOptions holds defaults for creating a Logger.
Functions ¶
This section is empty.
Types ¶
type Format ¶
type Format string
Format represents a text format to use when writing logs.
const (
FormatLogfmt Format = "logfmt"
FormatJSON Format = "json"
FormatDefault = FormatLogfmt
)
Supported log formats.
func (Format) MarshalText ¶
func (ll Format) MarshalText() (text []byte, err error)
MarshalText implements encoding.TextMarshaler.
func (*Format) UnmarshalText ¶
func (ll *Format) UnmarshalText(text []byte) error
UnmarshalText implements encoding.TextUnmarshaler.
type Level ¶
type Level string
Level represents how verbose logging should be.
const (
LevelDebug Level = "debug"
LevelInfo Level = "info"
LevelWarn Level = "warn"
LevelError Level = "error"
LevelDefault = LevelInfo
)
Supported log levels
func (Level) Filter ¶
func (ll Level) Filter() level.Option
Filter returns a go-kit logging filter from the level.
func (Level) MarshalText ¶
func (ll Level) MarshalText() (text []byte, err error)
MarshalText implements encoding.TextMarshaler.
func (*Level) UnmarshalText ¶
func (ll *Level) UnmarshalText(text []byte) error
UnmarshalText implements encoding.TextUnmarshaler.
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger implements the github.com/go-kit/log.Logger interface. It supports being dynamically updated at runtime.
type Options ¶
type Options struct {
Level Level `river:"level,attr,optional"`
Format Format `river:"format,attr,optional"`
}
Options is a set of options used to construct and configure a Logger.
func (*Options) UnmarshalRiver ¶ added in v0.27.0
func (o *Options) UnmarshalRiver(f func(interface{}) error) error
UnmarshalRiver implements river.Unmarshaler.