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

Method Debugf

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

Source from the content-addressed store, hash-verified

338}
339
340func (l *Logger) Debugf(format string, v ...interface{}) {
341 t := TYPE_DEBUG
342 if l.isDisabled(t) {
343 return
344 }
345 s := fmt.Sprintf(format, v...)
346 l.output(1, nil, t, s)
347}
348
349func (l *Logger) DebugError(err error, v ...interface{}) {
350 t := TYPE_DEBUG

Callers 15

initFunction · 0.80
apiRequestJsonFunction · 0.80
processMethod · 0.80
processMethod · 0.80
slotsmgrtMethod · 0.80
MkdirMethod · 0.80
CreateMethod · 0.80
UpdateMethod · 0.80
DeleteMethod · 0.80
ReadMethod · 0.80
ListMethod · 0.80
CreateEphemeralMethod · 0.80

Calls 2

isDisabledMethod · 0.95
outputMethod · 0.95

Tested by

no test coverage detected