zap

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Jun 28, 2026 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Level  string `mapstructure:"level" validate:"required,oneof=debug info warn error fatal panic"`
	Format string `mapstructure:"format" validate:"required"` // time layout for log timestamps
	Path   string `mapstructure:"path"`                       // output path for the zap driver
	Debug  bool   `mapstructure:"-"`
}

Config configures the zap logger driver. The mapstructure tags let a service load it directly from JSON (nest it under the logger config). Debug is injected by the service from its top-level debug flag, not loaded.

type Zap

type Zap struct {
	// contains filtered or unexported fields
}

func NewZap

func NewZap(c Config) (*Zap, error)

func (*Zap) Debug

func (z *Zap) Debug(msg string, fields ...base.Field)

func (*Zap) Error

func (z *Zap) Error(msg string, fields ...base.Field)

func (*Zap) Info

func (z *Zap) Info(msg string, fields ...base.Field)

func (*Zap) Stop

func (z *Zap) Stop(_ context.Context) error

func (*Zap) Warn

func (z *Zap) Warn(msg string, fields ...base.Field)

Jump to

Keyboard shortcuts

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