(v ...interface{})
| 325 | } |
| 326 | |
| 327 | func (log *ZinxLoggerCore) Panic(v ...interface{}) { |
| 328 | if log.verifyLogIsolation(LogPanic) { |
| 329 | return |
| 330 | } |
| 331 | s := fmt.Sprintln(v...) |
| 332 | _ = log.OutPut(LogPanic, s) |
| 333 | panic(s) |
| 334 | } |
| 335 | |
| 336 | func (log *ZinxLoggerCore) Stack(v ...interface{}) { |
| 337 | s := fmt.Sprint(v...) |
no test coverage detected