Files
mostlymatter/vendor/github.com/wiggin77/merror/format.go
Doug Lauder 4ac0619c90 MM-22273 New auditing system (phase 1) (#13967)
* New auditing API outputting to syslog via TLS

* New config section for specifying remote syslog server IP, port, and cert.

* Legacy audit API retained for access history feature
2020-03-12 15:50:21 -04:00

44 строки
997 B
Go

package merror
import (
"fmt"
"strings"
)
// FormatterFunc is a function that converts a merror
// to a string.
type FormatterFunc func(merr *MError) string
// GlobalFormatter is the global merror formatter.
// Set this to a custom formatter if desired.
var GlobalFormatter = defaultFormatter
// defaultFormatter
func defaultFormatter(merr *MError) string {
count := 0
overflow := 0
var format func(sb *strings.Builder, merr *MError, indent string)
format = func(sb *strings.Builder, merr *MError, indent string) {
count += merr.Len()
overflow += merr.Overflow()
fmt.Fprintf(sb, "%sMError:\n", indent)
for _, err := range merr.Errors() {
if e, ok := err.(*MError); ok {
format(sb, e, indent+" ")
} else {
fmt.Fprintf(sb, "%s%s\n", indent, err.Error())
}
}
}
sb := &strings.Builder{}
format(sb, merr, "")
fmt.Fprintf(sb, "%d errors total.\n", count)
if merr.overflow > 0 {
fmt.Fprintf(sb, "%d errors truncated.\n", overflow)
}
return sb.String()
}