MCPcopy Index your code
hub / github.com/aceld/zinx / Debugf

Method Debugf

zlog/logger_core.go:246–251  ·  view source on GitHub ↗
(format string, v ...interface{})

Source from the content-addressed store, hash-verified

244}
245
246func (log *ZinxLoggerCore) Debugf(format string, v ...interface{}) {
247 if log.verifyLogIsolation(LogDebug) {
248 return
249 }
250 _ = log.OutPut(LogDebug, fmt.Sprintf(format, v...))
251}
252
253func (log *ZinxLoggerCore) Debug(v ...interface{}) {
254 if log.verifyLogIsolation(LogDebug) {

Callers 3

DebugfFunction · 0.80
DebugFMethod · 0.80
DebugFXMethod · 0.80

Calls 2

verifyLogIsolationMethod · 0.95
OutPutMethod · 0.95

Tested by

no test coverage detected