(v ...interface{})
| 265 | } |
| 266 | |
| 267 | func (log *ZinxLoggerCore) Info(v ...interface{}) { |
| 268 | if log.verifyLogIsolation(LogInfo) { |
| 269 | return |
| 270 | } |
| 271 | _ = log.OutPut(LogInfo, fmt.Sprintln(v...)) |
| 272 | } |
| 273 | |
| 274 | func (log *ZinxLoggerCore) Warnf(format string, v ...interface{}) { |
| 275 | if log.verifyLogIsolation(LogWarn) { |
no test coverage detected