Documentation ¶
Overview ¶
Package grip provides a flexible logging package for basic Go programs. Drawing inspiration from Go and Python's standard library logging, as well as systemd's journal service, and other logging systems, Grip provides a number of very powerful logging abstractions in one high-level package.
Logging Instances ¶
The central type of the grip package is the Journaler type, instances of which provide distinct log capturing system. For ease, following from the Go standard library, the grip package provides parallel public methods that use an internal "standard" Jouernaler instance in the grip package, which has some defaults configured and may be sufficient for many use cases.
Output ¶
The send.Sender interface provides a way of changing the logging backend, and the send package provides a number of alternate implementations of logging systems, including: systemd's journal, logging to standard output, logging to a file, and generic syslog support.
Messages ¶
The message.Composer interface is the representation of all messages. They are implemented to provide a raw structured form as well as a string representation for more conentional logging output. Furthermore they are intended to be easy to produce, and defer more expensive processing until they're being logged, to prevent expensive operations producing messages that are below threshold.
Basic Logging ¶
Loging helpers exist for the following levels:
Emergency + (fatal/panic) Alert Critical Error Warning Notice Info Debug
These methods accept both strings (message content,) or types that implement the message.MessageComposer interface. Composer types make it possible to delay generating a message unless the logger is over the logging threshold. Use this to avoid expensive serialization operations for suppressed logging operations.
All levels also have additional methods with `ln` and `f` appended to the end of the method name which allow Println() and Printf() style functionality. You must pass printf/println-style arguments to these methods.
Conditional Logging ¶
The Conditional logging methods take two arguments, a Boolean, and a message argument. Messages can be strings, objects that implement the MessageComposer interface, or errors. If condition boolean is true, the threshold level is met, and the message to log is not an empty string, then it logs the resolved message.
Use conditional logging methods to potentially suppress log messages based on situations orthogonal to log level, with "log sometimes" or "log rarely" semantics. Combine with MessageComposers to to avoid expensive message building operations.
Error Catcher ¶
The MutiCatcher type makes it possible to collect from a group of operations and then aggregate them as a single error.
Index ¶
- func Alert(msg interface{})
- func AlertWhen(conditional bool, m interface{})
- func Alertf(msg string, a ...interface{})
- func Alertln(a ...interface{})
- func Critical(msg interface{})
- func CriticalWhen(conditional bool, m interface{})
- func Criticalf(msg string, a ...interface{})
- func Criticalln(a ...interface{})
- func Debug(msg interface{})
- func DebugWhen(conditional bool, m interface{})
- func Debugf(msg string, a ...interface{})
- func Debugln(a ...interface{})
- func Emergency(msg interface{})
- func EmergencyFatal(msg interface{})
- func EmergencyPanic(msg interface{})
- func EmergencyWhen(conditional bool, m interface{})
- func Emergencyf(msg string, a ...interface{})
- func Emergencyln(a ...interface{})
- func Error(msg interface{})
- func ErrorTimeFinder(err error) (time.Time, bool)
- func ErrorWhen(conditional bool, m interface{})
- func Errorf(msg string, a ...interface{})
- func Errorln(a ...interface{})
- func GetSender() send.Sender
- func Info(msg interface{})
- func InfoWhen(conditional bool, message interface{})
- func Infof(msg string, a ...interface{})
- func Infoln(a ...interface{})
- func Log(l level.Priority, msg interface{})
- func LogWhen(conditional bool, l level.Priority, m interface{})
- func Logf(l level.Priority, msg string, a ...interface{})
- func Logln(l level.Priority, a ...interface{})
- func MakeCatcherErrorHandler(catcher Catcher, fallback send.Sender) send.ErrorHandler
- func MakeStandardLogger(p level.Priority) *log.Logger
- func Name() string
- func Notice(msg interface{})
- func NoticeWhen(conditional bool, m interface{})
- func Noticef(msg string, a ...interface{})
- func Noticeln(a ...interface{})
- func SetDefaultJournaler(l Journaler)
- func SetDefaultStandardLogger(p level.Priority)
- func SetLevel(info send.LevelInfo) error
- func SetName(name string)
- func SetSender(s send.Sender) error
- func Warning(msg interface{})
- func WarningWhen(conditional bool, m interface{})
- func Warningf(msg string, a ...interface{})
- func Warningln(a ...interface{})
- func WrapErrorTime(err error) error
- func WrapErrorTimeMessage(err error, m string) error
- func WrapErrorTimeMessagef(err error, m string, args ...interface{}) error
- type Catcher
- func MakeBasicCatcher(size int) Catcher
- func MakeExtendedCatcher(size int) Catcher
- func MakeExtendedTimestampCatcher(size int) Catcher
- func MakeSimpleCatcher(size int) Catcher
- func MakeTimestampCatcher(size int) Catcher
- func NewBasicCatcher() Catcher
- func NewCatcher() Catcher
- func NewExtendedCatcher() Catcher
- func NewExtendedTimestampCatcher() Catcher
- func NewSimpleCatcher() Catcher
- func NewTimestampCatcher() Catcher
- type CheckFunction
- type Journaler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CriticalWhen ¶
func CriticalWhen(conditional bool, m interface{})
func Criticalln ¶
func Criticalln(a ...interface{})
func EmergencyFatal ¶
func EmergencyFatal(msg interface{})
func EmergencyPanic ¶
func EmergencyPanic(msg interface{})
func EmergencyWhen ¶
func EmergencyWhen(conditional bool, m interface{})
func Emergencyf ¶
func Emergencyf(msg string, a ...interface{})
func Emergencyln ¶
func Emergencyln(a ...interface{})
func ErrorTimeFinder ¶
ErrorTimeFinder unwraps a timestamp annotated error if possible and is capable of finding a timestamp in an error that has been annotated using pkg/errors.
func GetSender ¶
GetSender returns the current Journaler's sender instance. Use this in combination with SetSender to have multiple Journaler instances backed by the same send.Sender instance.
func MakeCatcherErrorHandler ¶
func MakeCatcherErrorHandler(catcher Catcher, fallback send.Sender) send.ErrorHandler
MakeCatcherErrorHandler produces an error handler useful for collecting errors from a sender using the supplied error catcher. At the very least, consider using a catcher that has a specified maxsize, and possibly timestamp annotating catcher as well. If you
func MakeStandardLogger ¶
MakeStandardLogger constructs a standard library logging instance that logs all messages to the global grip logging instance.
func NoticeWhen ¶
func NoticeWhen(conditional bool, m interface{})
func SetDefaultJournaler ¶
func SetDefaultJournaler(l Journaler)
SetDefaultJournaler allows you to override the standard logger, that is used by calls in the grip package. This call is not thread safe relative to other logging calls, or the GetDefaultJournaler call, although all journaling methods are safe: as a result be sure to only call this method during package and process initialization.
func SetDefaultStandardLogger ¶
SetDefaultStandardLogger set's the standard library's global logging instance to use grip's global logger at the specified level.
func SetName ¶
func SetName(name string)
SetName declare a name string for the logger, including in the logging message. Typically this is included on the output of the command.
func SetSender ¶
SetSender swaps send.Sender() implementations in a logging instance. Calls the Close() method on the existing instance before changing the implementation for the current instance.
func WarningWhen ¶
func WarningWhen(conditional bool, m interface{})
func WrapErrorTime ¶
WrapErrorTime annotates an error with the timestamp. The underlying concrete object implements message.Composer as well as error.
func WrapErrorTimeMessage ¶
WrapErrorTimeMessage annotates an error with the timestamp and a string form. The underlying concrete object implements message.Composer as well as error.
func WrapErrorTimeMessagef ¶
WrapErrorTimeMessagef annotates an error with a timestamp and a string formated message, like fmt.Sprintf or fmt.Errorf. The underlying concrete object implements message.Composer as well as error.
Types ¶
type Catcher ¶
type Catcher interface { Add(error) AddWhen(bool, error) Extend([]error) ExtendWhen(bool, []error) Len() int HasErrors() bool String() string Resolve() error Errors() []error New(string) NewWhen(bool, string) Errorf(string, ...interface{}) ErrorfWhen(bool, string, ...interface{}) Wrap(error, string) Wrapf(error, string, ...interface{}) Check(CheckFunction) CheckExtend([]CheckFunction) CheckWhen(bool, CheckFunction) }
Catcher is an interface for an error collector for use when implementing continue-on-error semantics in concurrent operations. There are three different Catcher implementations provided by this package that differ *only* in terms of the string format returned by String() (and also the format of the error returned by Resolve().)
If you do not use github.com/pkg/errors to attach errors, the implementations are usually functionally equivalent. The Extended variant formats the errors using the "%+v" (which returns a full stack trace with pkg/errors,) the Simple variant uses %s (which includes all the wrapped context,) and the// basic catcher calls error.Error() (which should be equvalent to %s for most error implementations.)
func MakeBasicCatcher ¶
MakeBasicCatcher collects error messages and formats them using a new-line separated string of the output of error.Error(). If the size greater than 0 the catcher will never collect more than the specified number of errors, discarding earlier messages when adding new messages.
func MakeExtendedCatcher ¶
MakeExtendedCatcher collects error messages and formats them using a new-line separated string of the extended string format of the error message (e.g. %+v). If the size greater than 0 the catcher will never collect more than the specified number of errors, discarding earlier messages when adding new messages.
func MakeExtendedTimestampCatcher ¶
MakeTimestampCatcher constructs a Catcher instance that annotates all errors with their collection time and also captures stacks when possible. If the size greater than 0 the catcher will never collect more than the specified number of errors, discarding earlier messages when adding new messages.
func MakeSimpleCatcher ¶
MakeSimpleCatcher collects error messages and formats them using a new-line separated string of the string format of the error message (e.g. %s). If the size greater than 0 the catcher will never collect more than the specified number of errors, discarding earlier messages when adding new messages.
func MakeTimestampCatcher ¶
MakeTimestampCatcher constructs a Catcher instance that annotates all errors with their collection time; however, if the size is greater than 0 the catcher will never collect more than the specified number of errors, discarding earlier messages when adding new messages.
func NewBasicCatcher ¶
func NewBasicCatcher() Catcher
NewBasicCatcher collects error messages and formats them using a new-line separated string of the output of error.Error()
func NewCatcher ¶
func NewCatcher() Catcher
NewCatcher returns a Catcher instance that you can use to capture error messages and aggregate the errors. For consistency with earlier versions NewCatcher is the same as NewExtendedCatcher()
DEPRECATED: use one of the other catcher implementations. See the documentation for the Catcher interface for most implementations.
func NewExtendedCatcher ¶
func NewExtendedCatcher() Catcher
NewExtendedCatcher collects error messages and formats them using a new-line separated string of the extended string format of the error message (e.g. %+v).
func NewExtendedTimestampCatcher ¶
func NewExtendedTimestampCatcher() Catcher
NewExtendedTimestampCatcher adds long-form annotation to the aggregated error message (e.g. including stacks, when possible.)
func NewSimpleCatcher ¶
func NewSimpleCatcher() Catcher
NewSimpleCatcher collects error messages and formats them using a new-line separated string of the string format of the error message (e.g. %s).
func NewTimestampCatcher ¶
func NewTimestampCatcher() Catcher
NewTimestampCatcher produces a Catcher instance that reports the short form of all constituent errors and annotates those errors with a timestamp to reflect when the error was collected.
type CheckFunction ¶
type CheckFunction func() error
CheckFunction are functions which take no arguments and return an error.
type Journaler ¶
type Journaler interface { Name() string SetName(string) // Methods to access the underlying message sending backend. GetSender() send.Sender SetSender(send.Sender) error SetLevel(send.LevelInfo) error // Send allows you to push a composer which stores its own // priorty (or uses the sender's default priority). Send(interface{}) // Specify a log level as an argument rather than a method // name. Log(level.Priority, interface{}) Logf(level.Priority, string, ...interface{}) Logln(level.Priority, ...interface{}) LogWhen(bool, level.Priority, interface{}) // Emergency methods have "panic" and "fatal" variants that // call panic or os.Exit(1). It is impossible for "Emergency" // to be below threshold, however, if the message isn't // loggable (e.g. error is nil, or message is empty,) these // methods will not panic/error. EmergencyFatal(interface{}) EmergencyPanic(interface{}) // For each level, in addition to a basic logger that takes // strings and message.Composer objects (and tries to do its best // with everythingelse.) there are println and printf // loggers. Each Level also has "When" variants that only log // if the passed condition are true. Emergency(interface{}) Emergencyf(string, ...interface{}) Emergencyln(...interface{}) EmergencyWhen(bool, interface{}) Alert(interface{}) Alertf(string, ...interface{}) Alertln(...interface{}) AlertWhen(bool, interface{}) Critical(interface{}) Criticalf(string, ...interface{}) Criticalln(...interface{}) CriticalWhen(bool, interface{}) Error(interface{}) Errorf(string, ...interface{}) Errorln(...interface{}) ErrorWhen(bool, interface{}) Warning(interface{}) Warningf(string, ...interface{}) Warningln(...interface{}) WarningWhen(bool, interface{}) Notice(interface{}) Noticef(string, ...interface{}) Noticeln(...interface{}) NoticeWhen(bool, interface{}) Info(interface{}) Infof(string, ...interface{}) Infoln(...interface{}) InfoWhen(bool, interface{}) Debug(interface{}) Debugf(string, ...interface{}) Debugln(...interface{}) DebugWhen(bool, interface{}) }
Journaler describes the public interface of the the Grip interface. Used to enforce consistency between the grip and logging packages.
func GetDefaultJournaler ¶
func GetDefaultJournaler() Journaler
GetDefaultJournaler returns the default journal instance used by this library. This call is not thread safe relative to other logging calls, or SetDefaultJournaler call, although all journaling methods are safe.
func NewJournaler ¶
NewJournaler creates a new Journaler instance. The Sender method is a non-operational bootstrap method that stores default and threshold types, as needed. You must use SetSender() or the UseSystemdLogger(), UseNativeLogger(), or UseFileLogger() methods to configure the backend.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package level defines a Priority type and some conversion methods for a 7-tiered logging level schema, which mirror syslog and system's logging levels.
|
Package level defines a Priority type and some conversion methods for a 7-tiered logging level schema, which mirror syslog and system's logging levels. |
Package logging provides the primary implementation of the Journaler interface (which is cloned in public functions in the grip interface itself.) Basic Logging Loging helpers exist for the following levels: Emergency + (fatal/panic) Alert + (fatal/panic) Critical + (fatal/panic) Error + (fatal/panic) Warning Notice Info Debug
|
Package logging provides the primary implementation of the Journaler interface (which is cloned in public functions in the grip interface itself.) Basic Logging Loging helpers exist for the following levels: Emergency + (fatal/panic) Alert + (fatal/panic) Critical + (fatal/panic) Error + (fatal/panic) Warning Notice Info Debug |
package message defines the Composer interface and a handful of implementations which represent the structure for messages produced by grip.
|
package message defines the Composer interface and a handful of implementations which represent the structure for messages produced by grip. |
Package recovery provides a number of grip-integrated panic handling tools for capturing and responding to panics using grip loggers.
|
Package recovery provides a number of grip-integrated panic handling tools for capturing and responding to panics using grip loggers. |
Call Site Sender Call site loggers provide a way to record the line number and file name where the logging call was made, which is particularly useful in tracing down log messages.
|
Call Site Sender Call site loggers provide a way to record the line number and file name where the logging call was made, which is particularly useful in tracing down log messages. |