Infof record a info level log.
(format string, args ...interface{})
| 108 | |
| 109 | // Infof record a info level log. |
| 110 | func (entry *Entry) Infof(format string, args ...interface{}) { |
| 111 | (*logrus.Entry)(entry).Infof(format, args...) |
| 112 | } |
| 113 | |
| 114 | // Printf record a new non-level log. |
| 115 | func (entry *Entry) Printf(format string, args ...interface{}) { |
no outgoing calls