Documentation
¶
Overview ¶
Package glogr implements github.com/go-logr/logr.Logger in terms of github.com/golang/glog.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewWithOptions ¶
NewWithOptions returns a logr.Logger which is implemented by glog.
Types ¶
type MessageClass ¶
type MessageClass int
MessageClass indicates which category or categories of messages to consider.
const ( // None ignores all message classes. None MessageClass = iota // All considers all message classes. All // Info only considers info messages. Info // Error only considers error messages. Error )
type Options ¶
type Options struct { // Depth biases the assumed number of call frames to the "true" caller. // This is useful when the calling code calls a function which then calls // glogr (e.g. a logging shim to another API). Values less than zero will // be treated as zero. Depth int // LogCaller tells glogr to add a "caller" key to some or all log lines. // The glog implementation always logs this information in its per-line // header, whether this option is set or not. LogCaller MessageClass // ErrorStack added by major1201 ErrorStack ErrorStack }
Options carries parameters which influence the way logs are generated.
Click to show internal directories.
Click to hide internal directories.