We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e08d56c commit 17df2e7Copy full SHA for 17df2e7
handler_inline_handle.go
@@ -39,7 +39,7 @@ func (h *HandleInlineHandler) WithAttrs(attrs []slog.Attr) slog.Handler {
39
newAttrs = append(newAttrs, h.attrs...)
40
newAttrs = append(newAttrs, attrs...)
41
42
- return &InlineHandler{
+ return &HandleInlineHandler{
43
groups: h.groups,
44
attrs: newAttrs,
45
handleFunc: h.handleFunc,
@@ -56,7 +56,7 @@ func (h *HandleInlineHandler) WithGroup(name string) slog.Handler {
56
newGroups := []string{}
57
newGroups = append(newGroups, h.groups...)
58
newGroups = append(newGroups, name)
59
60
groups: newGroups,
61
attrs: h.attrs,
62
0 commit comments