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

Function Debugf

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

Source from the content-addressed store, hash-verified

582}
583
584func Debugf(format string, v ...interface{}) {
585 t := TYPE_DEBUG
586 if StdLog.isDisabled(t) {
587 return
588 }
589 s := fmt.Sprintf(format, v...)
590 StdLog.output(1, nil, t, s)
591}
592
593func DebugError(err error, v ...interface{}) {
594 t := TYPE_DEBUG

Callers

nothing calls this directly

Calls 2

isDisabledMethod · 0.80
outputMethod · 0.80

Tested by

no test coverage detected