(format string, v ...interface{})
| 258 | } |
| 259 | |
| 260 | func (log *ZinxLoggerCore) Infof(format string, v ...interface{}) { |
| 261 | if log.verifyLogIsolation(LogInfo) { |
| 262 | return |
| 263 | } |
| 264 | _ = log.OutPut(LogInfo, fmt.Sprintf(format, v...)) |
| 265 | } |
| 266 | |
| 267 | func (log *ZinxLoggerCore) Info(v ...interface{}) { |
| 268 | if log.verifyLogIsolation(LogInfo) { |
no test coverage detected