(v ...interface{})
| 308 | } |
| 309 | |
| 310 | func (log *ZinxLoggerCore) Fatal(v ...interface{}) { |
| 311 | if log.verifyLogIsolation(LogFatal) { |
| 312 | return |
| 313 | } |
| 314 | _ = log.OutPut(LogFatal, fmt.Sprintln(v...)) |
| 315 | os.Exit(1) |
| 316 | } |
| 317 | |
| 318 | func (log *ZinxLoggerCore) Panicf(format string, v ...interface{}) { |
| 319 | if log.verifyLogIsolation(LogPanic) { |
no test coverage detected