Documentation ¶
Overview ¶
Package logger Provides structured & deprecated unstructured logging facade to facilitate logging to different providers and multiple loggers.
Index ¶
- type Field
- func Any(key string, value interface{}) Field
- func Binary(key string, val []byte) Field
- func Bool(key string, val bool) Field
- func Boolp(key string, val *bool) Field
- func ByteString(key string, val []byte) Field
- func Complex128(key string, val complex128) Field
- func Complex128p(key string, val *complex128) Field
- func Complex64(key string, val complex64) Field
- func Complex64p(key string, val *complex64) Field
- func Duration(key string, val time.Duration) Field
- func Durationp(key string, val *time.Duration) Field
- func Error(err error) Field
- func Float32(key string, val float32) Field
- func Float32p(key string, val *float32) Field
- func Float64(key string, val float64) Field
- func Float64p(key string, val *float64) Field
- func Inline(val zapcore.ObjectMarshaler) Field
- func Int(key string, val int) Field
- func Int16(key string, val int16) Field
- func Int16p(key string, val *int16) Field
- func Int32(key string, val int32) Field
- func Int32p(key string, val *int32) Field
- func Int64(key string, val int64) Field
- func Int64p(key string, val *int64) Field
- func Int8(key string, val int8) Field
- func Int8p(key string, val *int8) Field
- func Intp(key string, val *int) Field
- func NamedError(key string, err error) Field
- func Namespace(key string) Field
- func Object(key string, val zapcore.ObjectMarshaler) Field
- func Reflect(key string, val interface{}) Field
- func Skip() Field
- func Stack(key string) Field
- func StackSkip(key string, skip int) Field
- func String(key string, val string) Field
- func Stringer(key string, val fmt.Stringer) Field
- func Stringp(key string, val *string) Field
- func Time(key string, val time.Time) Field
- func Timep(key string, val *time.Time) Field
- func Uint(key string, val uint) Field
- func Uint16(key string, val uint16) Field
- func Uint16p(key string, val *uint16) Field
- func Uint32(key string, val uint32) Field
- func Uint32p(key string, val *uint32) Field
- func Uint64(key string, val uint64) Field
- func Uint64p(key string, val *uint64) Field
- func Uint8(key string, val uint8) Field
- func Uint8p(key string, val *uint8) Field
- func Uintp(key string, val *uint) Field
- func Uintptr(key string, val uintptr) Field
- func Uintptrp(key string, val *uintptr) Field
- type Level
- type LogInstance
- type LoggingOption
- type Options
- type SamplingOptions
- type Singleton
- func (s *Singleton) AddLogger(key string, w io.Writer, newLevel Level, opts ...LoggingOption)
- func (s *Singleton) DPanic(msg string, fields ...Field)
- func (s *Singleton) DPanicUnstruct(args ...interface{})deprecated
- func (s *Singleton) DPanicfUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) Debug(msg string, fields ...Field)
- func (s *Singleton) DebugUnstruct(args ...interface{})deprecated
- func (s *Singleton) DebugfUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) Error(msg string, fields ...Field)
- func (s *Singleton) ErrorIgnoreCancel(ctx context.Context, msg string, fields ...Field)
- func (s *Singleton) ErrorIgnoreCancelUnstruct(ctx context.Context, args ...interface{})deprecated
- func (s *Singleton) ErrorInLoggerWriter(format string, args ...interface{})
- func (s *Singleton) ErrorInLoggerWriterIgnoreCancel(ctx context.Context, format string, args ...interface{})
- func (s *Singleton) ErrorUnstruct(args ...interface{})deprecated
- func (s *Singleton) ErrorfIgnoreCancelUnstruct(ctx context.Context, format string, args ...interface{})deprecated
- func (s *Singleton) ErrorfUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) Fatal(msg string, fields ...Field)
- func (s *Singleton) FatalUnstruct(args ...interface{})deprecated
- func (s *Singleton) FatalfUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) Info(msg string, fields ...Field)
- func (s *Singleton) InfoIgnoreCancel(ctx context.Context, msg string, fields ...Field)
- func (s *Singleton) InfoUnstruct(args ...interface{})deprecated
- func (s *Singleton) InfofUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) IsLevelEnabled(level Level) bool
- func (s *Singleton) Panic(msg string, fields ...Field)
- func (s *Singleton) PanicUnstruct(args ...interface{})deprecated
- func (s *Singleton) PanicfUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) SetConsoleLogLevel(newLevel Level)
- func (s *Singleton) SetConsoleLogging(enabled bool)
- func (s *Singleton) SetFileLogLevel(newLevel Level)
- func (s *Singleton) SetFileLogging(enabled bool)
- func (s *Singleton) SetJsonStdoutLogLevel(newLevel Level)
- func (s *Singleton) SetJsonStdoutLogging(enabled bool)
- func (s *Singleton) SetLogLevel(key string, newLevel Level)
- func (s *Singleton) SetLoggerEnabled(key string, enabled bool)
- func (s *Singleton) StartTask(opts ...LoggingOption)
- func (s *Singleton) StopTask()
- func (s *Singleton) Sync()
- func (s *Singleton) Trace(msg string, fields ...Field)
- func (s *Singleton) TraceUnstruct(args ...interface{})deprecated
- func (s *Singleton) TracefUnstruct(format string, args ...interface{})deprecated
- func (s *Singleton) Warn(msg string, fields ...Field)
- func (s *Singleton) WarnIgnoreCancel(ctx context.Context, msg string, fields ...Field)
- func (s *Singleton) WarnIgnoreCancelUnstruct(ctx context.Context, args ...interface{})deprecated
- func (s *Singleton) WarnUnstruct(args ...interface{})deprecated
- func (s *Singleton) WarnfIgnoreCancelUnstruct(ctx context.Context, format string, args ...interface{})deprecated
- func (s *Singleton) WarnfUnstruct(format string, args ...interface{})deprecated
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Field ¶
func Any ¶
Any takes a key and an arbitrary value and chooses the best way to represent them as a field, falling back to a reflection-based approach only if necessary.
Since byte/uint8 and rune/int32 are aliases, Any can't differentiate between them. To minimize surprises, []byte values are treated as binary blobs, byte values are treated as uint8, and runes are always treated as integers
func Binary ¶
Binary constructs a field that carries an opaque binary blob.
Binary data is serialized in an encoding-appropriate format. For example, zap's JSON encoder base64-encodes binary blobs. To log UTF-8 encoded text, use ByteString.
func Boolp ¶
Boolp constructs a field that carries a *bool. The returned Field will safely and explicitly represent `nil` when appropriate.
func ByteString ¶
ByteString constructs a field that carries UTF-8 encoded text as a []byte. To log opaque binary blobs (which aren't necessarily valid UTF-8), use Binary.
func Complex128 ¶
func Complex128(key string, val complex128) Field
Complex128 constructs a field that carries a complex number. Unlike most numeric fields, this costs an allocation (to convert the complex128 to interface{}).
func Complex128p ¶
func Complex128p(key string, val *complex128) Field
Complex128p constructs a field that carries a *complex128. The returned Field will safely and explicitly represent `nil` when appropriate.
func Complex64 ¶
Complex64 constructs a field that carries a complex number. Unlike most numeric fields, this costs an allocation (to convert the complex64 to interface{}).
func Complex64p ¶
Complex64p constructs a field that carries a *complex64. The returned Field will safely and explicitly represent `nil` when appropriate.
func Duration ¶
Duration constructs a field with the given key and value. The encoder controls how the duration is serialized.
func Durationp ¶
Durationp constructs a field that carries a *time.Duration. The returned Field will safely and explicitly represent `nil` when appropriate.
func Float32 ¶
Float32 constructs a field that carries a float32. The way the floating-point value is represented is encoder-dependent, so marshaling is necessarily lazy.
func Float32p ¶
Float32p constructs a field that carries a *float32. The returned Field will safely and explicitly represent `nil` when appropriate.
func Float64 ¶
Float64 constructs a field that carries a float64. The way the floating-point value is represented is encoder-dependent, so marshaling is necessarily lazy.
func Float64p ¶
Float64p constructs a field that carries a *float64. The returned Field will safely and explicitly represent `nil` when appropriate.
func Inline ¶
func Inline(val zapcore.ObjectMarshaler) Field
Inline constructs a Field that is similar to Object, but it will add the elements of the provided ObjectMarshaler to the current namespace.
func Int16p ¶
Int16p constructs a field that carries a *int16. The returned Field will safely and explicitly represent `nil` when appropriate.
func Int32p ¶
Int32p constructs a field that carries a *int32. The returned Field will safely and explicitly represent `nil` when appropriate.
func Int64p ¶
Int64p constructs a field that carries a *int64. The returned Field will safely and explicitly represent `nil` when appropriate.
func Int8p ¶
Int8p constructs a field that carries a *int8. The returned Field will safely and explicitly represent `nil` when appropriate.
func Intp ¶
Intp constructs a field that carries a *int. The returned Field will safely and explicitly represent `nil` when appropriate.
func NamedError ¶
NamedError constructs a field that lazily stores err.Error() under the provided key. Errors which also implement fmt.Formatter (like those produced by github.com/pkg/errors) will also have their verbose representation stored under key+"Verbose". If passed a nil error, the field is a no-op.
For the common case in which the key is simply "error", the Error function is shorter and less repetitive.
func Namespace ¶
Namespace creates a named, isolated scope within the logger's context. All subsequent fields will be added to the new namespace.
This helps prevent key collisions when injecting loggers into sub-components or third-party libraries.
func Object ¶
func Object(key string, val zapcore.ObjectMarshaler) Field
Object constructs a field with the given key and ObjectMarshaler. It provides a flexible, but still type-safe and efficient, way to add map- or struct-like user-defined types to the logging context. The struct's MarshalLogObject method is called lazily.
func Reflect ¶
Reflect constructs a field with the given key and an arbitrary object. It uses an encoding-appropriate, reflection-based function to lazily serialize nearly any object into the logging context, but it's relatively slow and allocation-heavy. Outside tests, Any is always a better choice.
If encoding fails (e.g., trying to serialize a map[int]string to JSON), Reflect includes the error message in the final log output.
func Skip ¶
func Skip() Field
Skip constructs a no-op field, which is often useful when handling invalid inputs in other Field constructors.
func Stack ¶
Stack constructs a field that stores a stacktrace of the current goroutine under provided key. Keep in mind that taking a stacktrace is eager and expensive (relatively speaking); this function both makes an allocation and takes about two microseconds.
func StackSkip ¶
StackSkip constructs a field similarly to Stack, but also skips the given number of frames from the top of the stacktrace.
func Stringer ¶
Stringer constructs a field with the given key and the output of the value's String method. The Stringer's String method is called lazily.
func Stringp ¶
Stringp constructs a field that carries a *string. The returned Field will safely and explicitly represent `nil` when appropriate.
func Time ¶
Time constructs a Field with the given key and value. The encoder controls how the time is serialized.
func Timep ¶
Timep constructs a field that carries a *time.Time. The returned Field will safely and explicitly represent `nil` when appropriate.
func Uint16p ¶
Uint16p constructs a field that carries a *uint16. The returned Field will safely and explicitly represent `nil` when appropriate.
func Uint32p ¶
Uint32p constructs a field that carries a *uint32. The returned Field will safely and explicitly represent `nil` when appropriate.
func Uint64p ¶
Uint64p constructs a field that carries a *uint64. The returned Field will safely and explicitly represent `nil` when appropriate.
func Uint8p ¶
Uint8p constructs a field that carries a *uint8. The returned Field will safely and explicitly represent `nil` when appropriate.
func Uintp ¶
Uintp constructs a field that carries a *uint. The returned Field will safely and explicitly represent `nil` when appropriate.
type Level ¶
type Level int8
A Level is a logging priority. Higher levels are more important.
const ( // DebugLevel logs are typically voluminous, and are usually disabled in // production. DebugLevel Level = iota - 1 // InfoLevel is the default logging priority. InfoLevel // WarnLevel logs are more important than Info, but don't need individual // human review. WarnLevel // ErrorLevel logs are high-priority. If an application is running smoothly, // it shouldn't generate any error-level logs. ErrorLevel // DPanicLevel logs are particularly important errors. In development the // logger panics after writing the message. DPanicLevel // PanicLevel logs a message, then panics. PanicLevel // FatalLevel logs a message, then calls os.Exit(1). FatalLevel DefaultAppShortName = "hello-world" )
type LogInstance ¶
type LogInstance struct {
// contains filtered or unexported fields
}
type LoggingOption ¶
type LoggingOption func(o *Options)
func WithProductNameShort ¶
func WithProductNameShort(productNameShort string) LoggingOption
WithProductNameShort sets the name of your product used in log file names. example: logger.Instance().StartTask(logger.WithProductNameShort("your-product-name-here"))
func WithSampling ¶
func WithSampling(samplingOptions SamplingOptions) LoggingOption
type Singleton ¶
func (*Singleton) DPanicUnstruct
deprecated
func (s *Singleton) DPanicUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) DPanicfUnstruct
deprecated
func (*Singleton) DebugUnstruct
deprecated
func (s *Singleton) DebugUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) DebugfUnstruct
deprecated
func (*Singleton) ErrorIgnoreCancel ¶
func (*Singleton) ErrorIgnoreCancelUnstruct
deprecated
func (*Singleton) ErrorInLoggerWriter ¶
ErrorInLoggerWriter is used by log Writer sinks added with AddLogger() to log messages to standard console & file loggers that are enabled so the error in the logger can be trapped somewhere and without an error loop in the logger that triggered it
func (*Singleton) ErrorInLoggerWriterIgnoreCancel ¶
func (*Singleton) ErrorUnstruct
deprecated
func (s *Singleton) ErrorUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) ErrorfIgnoreCancelUnstruct
deprecated
func (*Singleton) ErrorfUnstruct
deprecated
func (*Singleton) FatalUnstruct
deprecated
func (s *Singleton) FatalUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) FatalfUnstruct
deprecated
func (*Singleton) InfoIgnoreCancel ¶
func (*Singleton) InfoUnstruct
deprecated
func (s *Singleton) InfoUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) InfofUnstruct
deprecated
func (*Singleton) IsLevelEnabled ¶
func (*Singleton) PanicUnstruct
deprecated
func (s *Singleton) PanicUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) PanicfUnstruct
deprecated
func (*Singleton) SetConsoleLogLevel ¶
func (*Singleton) SetConsoleLogging ¶
func (*Singleton) SetFileLogLevel ¶
func (*Singleton) SetFileLogging ¶
func (*Singleton) SetJsonStdoutLogLevel ¶
func (*Singleton) SetJsonStdoutLogging ¶
func (*Singleton) SetLogLevel ¶
func (*Singleton) SetLoggerEnabled ¶
func (*Singleton) StartTask ¶
func (s *Singleton) StartTask(opts ...LoggingOption)
func (*Singleton) TraceUnstruct
deprecated
func (s *Singleton) TraceUnstruct(args ...interface{})
Deprecated: use structured logging instead.
func (*Singleton) TracefUnstruct
deprecated
func (*Singleton) WarnIgnoreCancel ¶
func (*Singleton) WarnIgnoreCancelUnstruct
deprecated
func (*Singleton) WarnUnstruct
deprecated
func (s *Singleton) WarnUnstruct(args ...interface{})
Deprecated: use structured logging instead.