(args ...interface{})
| 427 | } |
| 428 | |
| 429 | func (entry *Entry) Fatalln(args ...interface{}) { |
| 430 | entry.Logln(FatalLevel, args...) |
| 431 | entry.Logger.Exit(1) |
| 432 | } |
| 433 | |
| 434 | func (entry *Entry) Panicln(args ...interface{}) { |
| 435 | entry.Logln(PanicLevel, args...) |