log: remove unused parameter (#30432)

This commit is contained in:
asamuj 2024-10-08 19:30:07 +08:00 committed by GitHub
parent 65e5ca7d81
commit f8ac95e56f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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
}) })