diff --git a/relp_handler.go b/relp_handler.go index 6e7957a..3c98bae 100644 --- a/relp_handler.go +++ b/relp_handler.go @@ -116,6 +116,18 @@ func (r *RELPHandler) Startup() error { return nil } +func (r *RELPHandler) Enabled(ctx context.Context, level slog.Level) bool { + return true +} + +func (r *RELPHandler) WithAttrs(attrs []slog.Attr) slog.Handler { + return r +} + +func (r *RELPHandler) WithGroup(name string) slog.Handler { + return r +} + func (r *RELPHandler) Handle(ctx context.Context, record slog.Record) error { attrs := make(map[string]interface{}) record.Attrs(func(attr slog.Attr) bool {