updated vendor

This commit is contained in:
2026-06-16 08:02:19 +02:00
parent 2f7f99d3f0
commit 77299d0c64
1283 changed files with 67302 additions and 208958 deletions
+8 -3
View File
@@ -63,12 +63,17 @@ func slogOutput(file string, line int, now time.Time, err error, s severity.Seve
}
// See printS.
qMsg := make([]byte, 0, 1024)
qMsg = strconv.AppendQuote(qMsg, msg)
b := buffer.GetBuffer()
b.WriteString(strconv.Quote(msg))
b.Write(qMsg)
var errKV []interface{}
if err != nil {
serialize.KVListFormat(&b.Buffer, "err", err)
errKV = []interface{}{"err", err}
}
serialize.KVListFormat(&b.Buffer, kvList...)
serialize.FormatKVs(&b.Buffer, errKV, kvList)
// See print + header.
buf := logging.formatHeader(s, file, line, now)