Remove unused param

pull/30432/head
asamuj 6 days ago
parent f544fc3b46
commit f9496fb179
  1. 6
      log/format.go

@ -79,7 +79,7 @@ func (h *TerminalHandler) format(buf []byte, r slog.Record, usecolor bool) []byt
} }
func (h *TerminalHandler) formatAttributes(buf *bytes.Buffer, r slog.Record, color string) { func (h *TerminalHandler) formatAttributes(buf *bytes.Buffer, r slog.Record, color string) {
writeAttr := func(attr slog.Attr, first, last bool) { writeAttr := func(attr slog.Attr, last bool) {
buf.WriteByte(' ') buf.WriteByte(' ')
if color != "" { if color != "" {
@ -107,11 +107,11 @@ func (h *TerminalHandler) formatAttributes(buf *bytes.Buffer, r slog.Record, col
var n = 0 var n = 0
var nAttrs = len(h.attrs) + r.NumAttrs() var nAttrs = len(h.attrs) + r.NumAttrs()
for _, attr := range h.attrs { for _, attr := range h.attrs {
writeAttr(attr, n == 0, n == nAttrs-1) writeAttr(attr, n == nAttrs-1)
n++ n++
} }
r.Attrs(func(attr slog.Attr) bool { r.Attrs(func(attr slog.Attr) bool {
writeAttr(attr, n == 0, n == nAttrs-1) writeAttr(attr, n == nAttrs-1)
n++ n++
return true return true
}) })

Loading…
Cancel
Save