(format string, v ...interface{})
| 316 | } |
| 317 | |
| 318 | func (log *ZinxLoggerCore) Panicf(format string, v ...interface{}) { |
| 319 | if log.verifyLogIsolation(LogPanic) { |
| 320 | return |
| 321 | } |
| 322 | s := fmt.Sprintf(format, v...) |
| 323 | _ = log.OutPut(LogPanic, s) |
| 324 | panic(s) |
| 325 | } |
| 326 | |
| 327 | func (log *ZinxLoggerCore) Panic(v ...interface{}) { |
| 328 | if log.verifyLogIsolation(LogPanic) { |
no test coverage detected