A mock Handler for slog Go library. Used for testing purpose.
See also:
slog.Handler
chaining, fanout, routing, failover, load balancing...slog
attribute formattingslog
sampling policyslog.Handler
for test purposesHTTP middlewares:
slog
loggerslog
loggerslog
loggerslog
loggernet/http
middleware for slog
loggerLoggers:
slog
handler for Zap
slog
handler for Zerolog
slog
handler for Logrus
Log sinks:
slog
handler for Datadog
slog
handler for Betterstack
slog
handler for Rollbar
slog
handler for Loki
slog
handler for Sentry
slog
handler for Syslog
slog
handler for Logstash
slog
handler for Fluentd
slog
handler for Graylog
slog
handler for Quickwit
slog
handler for Slack
slog
handler for Telegram
slog
handler for Mattermost
slog
handler for Microsoft Teams
slog
handler for Webhook
slog
handler for Kafka
slog
handler for NATS
slog
handler for Parquet
+ Object Storage
slog
handler for Go channelsgo get github.com/samber/slog-mock
Compatibility: go >= 1.21
No breaking changes will be made to exported APIs before v1.0.0.
GoDoc: https://pkg.go.dev/github.com/samber/slog-mock
type Option struct { // optional Enabled func(ctx context.Context, level slog.Level) bool // optional Handle func(ctx context.Context, record slog.Record) error }
import ( "fmt" "net/http" "time" slogmock "github.com/samber/slog-mock" "log/slog" ) func main() { logger := slog.New( slogmock.Option{ Handle: func(ctx context.Context, record slog.Record) error { // simulate slowdown then error from log sink time.Sleep(100*time.Millisecond) panic("could not connect to datadog") }, }.NewMockHandler(), ) logger = logger.With("release", "v1.0.0") logger. With( slog.Group("user", slog.String("id", "user-123"), slog.Time("created_at", time.Now()), ), ). With("error", fmt.Errorf("an error")). Error("a message", slog.Int("count", 1)) }
Don't hesitate ;)
# Install some dev dependencies make tools # Run tests make test # or make watch-test
Give a ⭐️ if this project helped you!
Copyright © 2023 Samuel Berthe.
This project is MIT licensed.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4