(v ...interface{})
| 251 | } |
| 252 | |
| 253 | func (log *ZinxLoggerCore) Debug(v ...interface{}) { |
| 254 | if log.verifyLogIsolation(LogDebug) { |
| 255 | return |
| 256 | } |
| 257 | _ = log.OutPut(LogDebug, fmt.Sprintln(v...)) |
| 258 | } |
| 259 | |
| 260 | func (log *ZinxLoggerCore) Infof(format string, v ...interface{}) { |
| 261 | if log.verifyLogIsolation(LogInfo) { |
no test coverage detected