Errorf record a error level log.
(format string, args ...interface{})
| 128 | |
| 129 | // Errorf record a error level log. |
| 130 | func (entry *Entry) Errorf(format string, args ...interface{}) { |
| 131 | (*logrus.Entry)(entry).Errorf(format, args...) |
| 132 | } |
| 133 | |
| 134 | // Fatalf record a fatal level log. |
| 135 | func (entry *Entry) Fatalf(format string, args ...interface{}) { |
no outgoing calls