Fatalf record a fatal level log.
(format string, args ...interface{})
| 133 | |
| 134 | // Fatalf record a fatal level log. |
| 135 | func (entry *Entry) Fatalf(format string, args ...interface{}) { |
| 136 | (*logrus.Entry)(entry).Fatalf(format, args...) |
| 137 | } |
| 138 | |
| 139 | // Panicf record a panic level log. |
| 140 | func (entry *Entry) Panicf(format string, args ...interface{}) { |
no outgoing calls