Skip to content

Commit

Permalink
log: remove unused parameter (#30432)
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuj authored Oct 8, 2024
1 parent 65e5ca7 commit f8ac95e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions log/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
writeAttr := func(attr slog.Attr, first, last bool) {
writeAttr := func(attr slog.Attr, last bool) {
buf.WriteByte(' ')

if color != "" {
Expand Down Expand Up @@ -107,11 +107,11 @@ func (h *TerminalHandler) formatAttributes(buf *bytes.Buffer, r slog.Record, col
var n = 0
var nAttrs = len(h.attrs) + r.NumAttrs()
for _, attr := range h.attrs {
writeAttr(attr, n == 0, n == nAttrs-1)
writeAttr(attr, n == nAttrs-1)
n++
}
r.Attrs(func(attr slog.Attr) bool {
writeAttr(attr, n == 0, n == nAttrs-1)
writeAttr(attr, n == nAttrs-1)
n++
return true
})
Expand Down

0 comments on commit f8ac95e

Please sign in to comment.