(format string, v ...interface{})
| 244 | } |
| 245 | |
| 246 | func (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 | |
| 253 | func (log *ZinxLoggerCore) Debug(v ...interface{}) { |
| 254 | if log.verifyLogIsolation(LogDebug) { |
no test coverage detected