Entry Printf family functions Debugf record a debug level log.
(format string, args ...interface{})
| 103 | |
| 104 | // Debugf record a debug level log. |
| 105 | func (entry *Entry) Debugf(format string, args ...interface{}) { |
| 106 | (*logrus.Entry)(entry).Debugf(format, args...) |
| 107 | } |
| 108 | |
| 109 | // Infof record a info level log. |
| 110 | func (entry *Entry) Infof(format string, args ...interface{}) { |
no outgoing calls