(format string, v ...interface{})
| 300 | } |
| 301 | |
| 302 | func (log *ZinxLoggerCore) Fatalf(format string, v ...interface{}) { |
| 303 | if log.verifyLogIsolation(LogFatal) { |
| 304 | return |
| 305 | } |
| 306 | _ = log.OutPut(LogFatal, fmt.Sprintf(format, v...)) |
| 307 | os.Exit(1) |
| 308 | } |
| 309 | |
| 310 | func (log *ZinxLoggerCore) Fatal(v ...interface{}) { |
| 311 | if log.verifyLogIsolation(LogFatal) { |
no test coverage detected