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

Function Errorf

pkg/utils/log/log.go:476–483  ·  view source on GitHub ↗
(format string, v ...interface{})

Source from the content-addressed store, hash-verified

474}
475
476func Errorf(format string, v ...interface{}) {
477 t := TYPE_ERROR
478 if StdLog.isDisabled(t) {
479 return
480 }
481 s := fmt.Sprintf(format, v...)
482 StdLog.output(1, nil, t, s)
483}
484
485func ErrorError(err error, v ...interface{}) {
486 t := TYPE_ERROR

Callers

nothing calls this directly

Calls 2

isDisabledMethod · 0.80
outputMethod · 0.80

Tested by

no test coverage detected