logging

package
v1.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 29, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Logger

type Logger struct {
	*zap.Logger
	// contains filtered or unexported fields
}

Logger splits sinks by purpose: the embedded *zap.Logger handles regular operator logs (stdout, no OTel export) while auditLogger is otelzap-wrapped so Audit() lines flow to both stdout and the OTel logs SDK. This keeps infrastructure errors and debug noise out of customer-visible OTel sinks.

func NewLogger

func NewLogger(opts ...Option) (*Logger, error)

func NewTestLogger added in v1.0.4

func NewTestLogger(zapLogger *zap.Logger) *Logger

NewTestLogger wraps a zap logger for use in tests, providing an audit sink that points at the same zap so test output is self-contained.

func (*Logger) Audit

func (l *Logger) Audit(msg string, fields ...zap.Field)

func (*Logger) Ctx

func (l *Logger) Ctx(ctx context.Context) LoggerWithCtx

type LoggerOption

type LoggerOption struct {
	LogLevel string
}

type LoggerWithCtx

type LoggerWithCtx struct {
	*zap.Logger
	// contains filtered or unexported fields
}

func (LoggerWithCtx) Audit

func (l LoggerWithCtx) Audit(msg string, fields ...zap.Field)

func (LoggerWithCtx) WithOptions added in v1.0.4

func (l LoggerWithCtx) WithOptions(opts ...zap.Option) LoggerWithCtx

type Option

type Option func(o *LoggerOption)

func WithLogLevel

func WithLogLevel(logLevel string) Option

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL