Embed fields into error for zerolog.
Go small library to embed fields into error for zerolog.
- logrus-error: Embed logrus.Fields into error
- zap-error: Embed zap.Field into error
Embed structured data into error and output it with zerolog.
fmt.Errorf enables to add additional context to error.
e.g.
fmt.Errorf("get a user: %w", err)
rs/zerolog is one of most popular structured logging library.
e.g.
logger.Error().Err(err).Str("username", username).Msg("get a user")
fmt.Errorf
is very useful, but you can add only a string to error as context. You can't add structured data to error.
If you use zerolog, you may want to add structured data to error.
This library provides small APIs to embed structured data into error and output it with zerolog.
import (
"github.com/suzuki-shunsuke/zerolog-error/zerr"
)
There are two APIs.
WithFields(err error, fields ...Field) error
: Embed fields into errorWithError(ev *zerolog.Event, err error) *zerolog.Event
: Get fields from error and add them to an event
e.g.
func updateUser() error {
// ...
return zerr.WithFields(errors.New("get a user"), zerr.Str("id", "foo"))
}
if err := updateUser(); err != nil {
zerr.WithError(log.Error(), err).Send("update a user")
}
Please see https://pkg.go.dev/github.com/suzuki-shunsuke/zerolog-error/zerr