(format string, args ...interface{})
| 382 | } |
| 383 | |
| 384 | func (entry *Entry) Fatalf(format string, args ...interface{}) { |
| 385 | entry.Logf(FatalLevel, format, args...) |
| 386 | entry.Logger.Exit(1) |
| 387 | } |
| 388 | |
| 389 | func (entry *Entry) Panicf(format string, args ...interface{}) { |
| 390 | entry.Logf(PanicLevel, format, args...) |