MCPcopy
hub / github.com/CodisLabs/codis / ErrorError

Method ErrorError

pkg/utils/log/log.go:241–248  ·  view source on GitHub ↗
(err error, v ...interface{})

Source from the content-addressed store, hash-verified

239}
240
241func (l *Logger) ErrorError(err error, v ...interface{}) {
242 t := TYPE_ERROR
243 if l.isDisabled(t) {
244 return
245 }
246 s := fmt.Sprint(v...)
247 l.output(1, err, t, s)
248}
249
250func (l *Logger) ErrorErrorf(err error, format string, v ...interface{}) {
251 t := TYPE_ERROR

Callers

nothing calls this directly

Calls 2

isDisabledMethod · 0.95
outputMethod · 0.95

Tested by

no test coverage detected