(v ...interface{})
| 279 | } |
| 280 | |
| 281 | func (log *ZinxLoggerCore) Warn(v ...interface{}) { |
| 282 | if log.verifyLogIsolation(LogWarn) { |
| 283 | return |
| 284 | } |
| 285 | _ = log.OutPut(LogWarn, fmt.Sprintln(v...)) |
| 286 | } |
| 287 | |
| 288 | func (log *ZinxLoggerCore) Errorf(format string, v ...interface{}) { |
| 289 | if log.verifyLogIsolation(LogError) { |
no test coverage detected